summaryrefslogtreecommitdiff
path: root/tests/validation
diff options
context:
space:
mode:
authorVeres Lajos <vlajos@gmail.com>2014-11-03 22:48:03 +0000
committerTim Graham <timograham@gmail.com>2014-11-03 21:07:05 -0500
commit6b32adda5935baa7cf99886c6c41a4eda358d2ef (patch)
tree455d3e5e92f49b9c01f6970c81feccc0f1b272d4 /tests/validation
parent378f94e39e566c915fe60e01f0ea7e52343513da (diff)
[1.7.x] Fixed typos using https://github.com/vlajos/misspell_fixer
Backport of a71a2ea756 from master
Diffstat (limited to 'tests/validation')
-rw-r--r--tests/validation/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/validation/tests.py b/tests/validation/tests.py
index 6122444e3d..0b925aaf3b 100644
--- a/tests/validation/tests.py
+++ b/tests/validation/tests.py
@@ -51,7 +51,7 @@ class BaseModelValidationTests(ValidationTestCase):
mtv = ModelToValidate(number=10, name='Some Name', url='not a url')
self.assertFieldFailsValidationWithMessage(mtv.full_clean, 'url', ['Enter a valid URL.'])
- def test_text_greater_that_charfields_max_length_raises_erros(self):
+ def test_text_greater_that_charfields_max_length_raises_errors(self):
mtv = ModelToValidate(number=10, name='Some Name' * 100)
self.assertFailsValidation(mtv.full_clean, ['name'])