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