summaryrefslogtreecommitdiff
path: root/tests/validation
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-10-23 06:09:29 -0400
committerTim Graham <timograham@gmail.com>2013-10-23 06:09:29 -0400
commitae48d77ef8e14dae76fddcd5a677b897c7c7c4ae (patch)
treefc938daf79b1061aeb70c9d7dd33108d2eb63544 /tests/validation
parent51d2e1fb233b5507bf14300787939717c4d93834 (diff)
downloaddjango-ae48d77ef8e14dae76fddcd5a677b897c7c7c4ae.tar.gz
Fixed E225 pep8 warnings.
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 34cde3fc8a..7f028e655b 100644
--- a/tests/validation/tests.py
+++ b/tests/validation/tests.py
@@ -24,7 +24,7 @@ class BaseModelValidationTests(ValidationTestCase):
self.assertFailsValidation(mtv.full_clean, [NON_FIELD_ERRORS, 'name'])
def test_wrong_FK_value_raises_error(self):
- mtv=ModelToValidate(number=10, name='Some Name', parent_id=3)
+ mtv = ModelToValidate(number=10, name='Some Name', parent_id=3)
self.assertFailsValidation(mtv.full_clean, ['parent'])
def test_correct_FK_value_validates(self):