summaryrefslogtreecommitdiff
path: root/tests/null_fk
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-11-03 10:17:58 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2013-11-03 10:17:58 -0800
commitf67e18f39eef898ee99120bb3913a34a1c118089 (patch)
tree845987cc088b64d91d08aff0cbb648ab630ed2ff /tests/null_fk
parentc347f78cc1b2a06958f692f0622deceac534dc6b (diff)
downloaddjango-f67e18f39eef898ee99120bb3913a34a1c118089.tar.gz
Fixed all E251 violations
Diffstat (limited to 'tests/null_fk')
-rw-r--r--tests/null_fk/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/null_fk/tests.py b/tests/null_fk/tests.py
index d5b68658ff..696c7a3035 100644
--- a/tests/null_fk/tests.py
+++ b/tests/null_fk/tests.py
@@ -31,7 +31,7 @@ class NullFkTests(TestCase):
(c1.id, 'My first comment', '<Post: First Post>'),
(c2.id, 'My second comment', 'None')
],
- transform = lambda c: (c.id, c.comment_text, repr(c.post))
+ transform=lambda c: (c.id, c.comment_text, repr(c.post))
)
# Regression test for #7530, #7716.
@@ -43,7 +43,7 @@ class NullFkTests(TestCase):
(c1.id, 'My first comment', '<Post: First Post>'),
(c2.id, 'My second comment', 'None')
],
- transform = lambda c: (c.id, c.comment_text, repr(c.post))
+ transform=lambda c: (c.id, c.comment_text, repr(c.post))
)
def test_combine_isnull(self):