:octocat: regex fix (#282)

This commit is contained in:
smiley
2024-10-16 10:22:02 +02:00
parent 9964cf8ff1
commit f822e807d7
2 changed files with 10 additions and 1 deletions
+9
View File
@@ -34,6 +34,15 @@ final class AlphaNumTest extends DataInterfaceTestAbstract{
return [
['ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890 $%*+-./:', true],
['abc', false],
['ÄÖÜ', false],
[',', true],
['-', true],
['+', true],
['.', true],
['*', true],
[':', true],
['/', true],
['\\', false],
];
}