From 9b9c805cedb08621bd5dc58a01a6478eb7cc49a9 Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Wed, 2 Aug 2023 19:53:16 +0200 Subject: Removed unneeded escapes in regexes. Special characters lose their special meaning inside sets of characters. "-" lose its special meaning if it's placed as the first or last character. Follow up to 7c6b66383da5f9a67142334cd2ed2d769739e8f1. --- tests/validators/tests.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'tests/validators') diff --git a/tests/validators/tests.py b/tests/validators/tests.py index e689435e3c..cf64638ebb 100644 --- a/tests/validators/tests.py +++ b/tests/validators/tests.py @@ -690,24 +690,24 @@ class TestValidatorEquality(TestCase): def test_regex_equality(self): self.assertEqual( - RegexValidator(r"^(?:[a-z0-9\.\-]*)://"), - RegexValidator(r"^(?:[a-z0-9\.\-]*)://"), + RegexValidator(r"^(?:[a-z0-9.-]*)://"), + RegexValidator(r"^(?:[a-z0-9.-]*)://"), ) self.assertNotEqual( - RegexValidator(r"^(?:[a-z0-9\.\-]*)://"), - RegexValidator(r"^(?:[0-9\.\-]*)://"), + RegexValidator(r"^(?:[a-z0-9.-]*)://"), + RegexValidator(r"^(?:[0-9.-]*)://"), ) self.assertEqual( - RegexValidator(r"^(?:[a-z0-9\.\-]*)://", "oh noes", "invalid"), - RegexValidator(r"^(?:[a-z0-9\.\-]*)://", "oh noes", "invalid"), + RegexValidator(r"^(?:[a-z0-9.-]*)://", "oh noes", "invalid"), + RegexValidator(r"^(?:[a-z0-9.-]*)://", "oh noes", "invalid"), ) self.assertNotEqual( - RegexValidator(r"^(?:[a-z0-9\.\-]*)://", "oh", "invalid"), - RegexValidator(r"^(?:[a-z0-9\.\-]*)://", "oh noes", "invalid"), + RegexValidator(r"^(?:[a-z0-9.-]*)://", "oh", "invalid"), + RegexValidator(r"^(?:[a-z0-9.-]*)://", "oh noes", "invalid"), ) self.assertNotEqual( - RegexValidator(r"^(?:[a-z0-9\.\-]*)://", "oh noes", "invalid"), - RegexValidator(r"^(?:[a-z0-9\.\-]*)://"), + RegexValidator(r"^(?:[a-z0-9.-]*)://", "oh noes", "invalid"), + RegexValidator(r"^(?:[a-z0-9.-]*)://"), ) self.assertNotEqual( @@ -721,7 +721,7 @@ class TestValidatorEquality(TestCase): ) def test_regex_equality_nocache(self): - pattern = r"^(?:[a-z0-9\.\-]*)://" + pattern = r"^(?:[a-z0-9.-]*)://" left = RegexValidator(pattern) re.purge() right = RegexValidator(pattern) -- cgit v1.3