diff options
| author | Larry O'Neill <larryoneill@gmail.com> | 2013-10-14 20:13:14 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-10-14 18:12:00 -0400 |
| commit | 83b9bfea44e23c5770fa14a8921914839929233b (patch) | |
| tree | 38039b835449a0dd8d0283286f7dbcf92ce5180a /tests/model_forms | |
| parent | 42a67ec1cd8cbaffd87f0a7b34714f7d4a259cfb (diff) | |
Fixed #21266 -- Fixed E201,E202 pep8 warnings.
Diffstat (limited to 'tests/model_forms')
| -rw-r--r-- | tests/model_forms/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/model_forms/tests.py b/tests/model_forms/tests.py index 6e23a0b676..8acc88b33f 100644 --- a/tests/model_forms/tests.py +++ b/tests/model_forms/tests.py @@ -696,7 +696,7 @@ class UniqueTest(TestCase): def test_explicitpk_unspecified(self): """Test for primary_key being in the form and failing validation.""" - form = ExplicitPKForm({'key': '', 'desc': '' }) + form = ExplicitPKForm({'key': '', 'desc': ''}) self.assertFalse(form.is_valid()) def test_explicitpk_unique(self): |
