summaryrefslogtreecommitdiff
path: root/tests/validators
diff options
context:
space:
mode:
Diffstat (limited to 'tests/validators')
-rw-r--r--tests/validators/tests.py22
1 files changed, 11 insertions, 11 deletions
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)