summaryrefslogtreecommitdiff
path: root/tests/generic_views/test_list.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/generic_views/test_list.py')
-rw-r--r--tests/generic_views/test_list.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/generic_views/test_list.py b/tests/generic_views/test_list.py
index 25f6553a8a..421609d76d 100644
--- a/tests/generic_views/test_list.py
+++ b/tests/generic_views/test_list.py
@@ -229,7 +229,8 @@ class ListViewTests(TestCase):
# 1 query for authors
with self.assertNumQueries(1):
self.client.get("/list/authors/notempty/")
- # same as above + 1 query to test if authors exist + 1 query for pagination
+ # same as above + 1 query to test if authors exist + 1 query for
+ # pagination
with self.assertNumQueries(3):
self.client.get("/list/authors/notempty/paginated/")