summaryrefslogtreecommitdiff
path: root/tests/null_fk/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/null_fk/tests.py')
-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):