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 20:59:30 -0500
commita71a2ea756673cd3c7a2c5125fa7e7f334b05475 (patch)
tree61cff2d319c13011d004d0f008fe1957fd773651 /tests/validation
parent7b420367524ad9f29b8bf0284f4b40bd6cfc8b93 (diff)
downloaddjango-a71a2ea756673cd3c7a2c5125fa7e7f334b05475.tar.gz
Fixed typos using https://github.com/vlajos/misspell_fixer
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 e1cfd64937..2a7549a461 100644
--- a/tests/validation/tests.py
+++ b/tests/validation/tests.py
@@ -56,7 +56,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'])