summaryrefslogtreecommitdiff
path: root/tests/pagination
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-02-04 08:08:27 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-02-07 20:37:05 +0100
commit7119f40c9881666b6f9b5cf7df09ee1d21cc8344 (patch)
treefa50869f5614295f462d9bf77fec59365c621609 /tests/pagination
parent9c19aff7c7561e3a82978a272ecdaad40dda5c00 (diff)
downloaddjango-7119f40c9881666b6f9b5cf7df09ee1d21cc8344.tar.gz
Refs #33476 -- Refactored code to strictly match 88 characters line length.
Diffstat (limited to 'tests/pagination')
-rw-r--r--tests/pagination/tests.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/pagination/tests.py b/tests/pagination/tests.py
index 79d60530fa..8444bd3dd0 100644
--- a/tests/pagination/tests.py
+++ b/tests/pagination/tests.py
@@ -502,8 +502,9 @@ class ModelPaginationTests(TestCase):
paginator = Paginator(Article.objects.order_by("id"), 5)
p = paginator.page(1)
- # Make sure object_list queryset is not evaluated by an invalid __getitem__ call.
- # (this happens from the template engine when using eg: {% page_obj.has_previous %})
+ # object_list queryset is not evaluated by an invalid __getitem__ call.
+ # (this happens from the template engine when using e.g.:
+ # {% page_obj.has_previous %}).
self.assertIsNone(p.object_list._result_cache)
msg = "Page indices must be integers or slices, not str."
with self.assertRaisesMessage(TypeError, msg):