From ae48d77ef8e14dae76fddcd5a677b897c7c7c4ae Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Wed, 23 Oct 2013 06:09:29 -0400 Subject: Fixed E225 pep8 warnings. --- tests/validation/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/validation/tests.py') 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): -- cgit v1.3