Skip to content

Commit 5d82e8e

Browse files
committed
Update tests, comma is not supported
1 parent 03e8485 commit 5d82e8e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/Data/AlphaNumTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,15 @@ public static function stringValidateProvider():array{
3535
['ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890 $%*+-./:', true],
3636
['abc', false],
3737
['ÄÖÜ', false],
38-
[',', true],
38+
[',', false],
3939
['-', true],
4040
['+', true],
4141
['.', true],
4242
['*', true],
4343
[':', true],
4444
['/', true],
4545
['\\', false],
46+
['0,1', false]
4647
];
4748
}
4849

0 commit comments

Comments
 (0)