From 5d82e8e8c9ecdf9a4f6df5f34f4d7db720d4040a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Einar=20Gangs=C3=B8?= Date: Fri, 19 Sep 2025 10:45:37 +0200 Subject: [PATCH] Update tests, comma is not supported --- tests/Data/AlphaNumTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/Data/AlphaNumTest.php b/tests/Data/AlphaNumTest.php index eeb2c2631..74df269b0 100644 --- a/tests/Data/AlphaNumTest.php +++ b/tests/Data/AlphaNumTest.php @@ -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] ]; }