summaryrefslogtreecommitdiff
path: root/tests/null_queries
diff options
context:
space:
mode:
authorAlasdair Nicol <alasdair@thenicols.net>2013-10-20 00:33:10 +0100
committerTim Graham <timograham@gmail.com>2013-10-21 08:31:30 -0400
commitb289fcf1bfeaa717ed465b2529a275b61dc02d92 (patch)
tree1b43958bb74005ccb93f3cd12ce4bc13d9747ab2 /tests/null_queries
parenta3690168cbde5e7bee16443569ad3dedd2466af7 (diff)
downloaddjango-b289fcf1bfeaa717ed465b2529a275b61dc02d92.tar.gz
Fixed #21288 -- Fixed E126 pep8 warnings
Diffstat (limited to 'tests/null_queries')
-rw-r--r--tests/null_queries/tests.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/null_queries/tests.py b/tests/null_queries/tests.py
index 0d814a3834..e442479cd7 100644
--- a/tests/null_queries/tests.py
+++ b/tests/null_queries/tests.py
@@ -28,11 +28,11 @@ class NullQueriesTests(TestCase):
# Excluding the previous result returns everything.
self.assertQuerysetEqual(
- Choice.objects.exclude(choice=None).order_by('id'),
- [
- '<Choice: Choice: Because. in poll Q: Why? >',
- '<Choice: Choice: Why Not? in poll Q: Why? >'
- ]
+ Choice.objects.exclude(choice=None).order_by('id'),
+ [
+ '<Choice: Choice: Because. in poll Q: Why? >',
+ '<Choice: Choice: Why Not? in poll Q: Why? >'
+ ]
)
# Valid query, but fails because foo isn't a keyword