mirror of
https://github.com/django/django.git
synced 2025-08-04 19:08:28 +00:00
Fixed typos using https://github.com/vlajos/misspell_fixer
This commit is contained in:
parent
7b42036752
commit
a71a2ea756
21 changed files with 28 additions and 28 deletions
|
@ -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'])
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue