summaryrefslogtreecommitdiff
path: root/tests/null_queries
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/null_queries
parent9c19aff7c7561e3a82978a272ecdaad40dda5c00 (diff)
downloaddjango-7119f40c9881666b6f9b5cf7df09ee1d21cc8344.tar.gz
Refs #33476 -- Refactored code to strictly match 88 characters line length.
Diffstat (limited to 'tests/null_queries')
-rw-r--r--tests/null_queries/tests.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/null_queries/tests.py b/tests/null_queries/tests.py
index f0aad73057..4c5c3bbe5c 100644
--- a/tests/null_queries/tests.py
+++ b/tests/null_queries/tests.py
@@ -33,7 +33,10 @@ class NullQueriesTests(TestCase):
)
# Valid query, but fails because foo isn't a keyword
- msg = "Cannot resolve keyword 'foo' into field. Choices are: choice, id, poll, poll_id"
+ msg = (
+ "Cannot resolve keyword 'foo' into field. Choices are: choice, id, poll, "
+ "poll_id"
+ )
with self.assertRaisesMessage(FieldError, msg):
Choice.objects.filter(foo__exact=None)