Update tests, comma is not supported

This commit is contained in:
Einar Gangsø
2025-09-19 10:45:37 +02:00
parent 03e84852b4
commit 5d82e8e8c9
+2 -1
View File
@@ -35,7 +35,7 @@ final class AlphaNumTest extends DataInterfaceTestAbstract{
['ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890 $%*+-./:', true],
['abc', false],
['ÄÖÜ', false],
[',', true],
[',', false],
['-', true],
['+', true],
['.', true],
@@ -43,6 +43,7 @@ final class AlphaNumTest extends DataInterfaceTestAbstract{
[':', true],
['/', true],
['\\', false],
['0,1', false]
];
}