summaryrefslogtreecommitdiff
path: root/tests/null_queries
diff options
context:
space:
mode:
Diffstat (limited to 'tests/null_queries')
-rw-r--r--tests/null_queries/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/null_queries/tests.py b/tests/null_queries/tests.py
index 8c8ca3f28d..3ba307d397 100644
--- a/tests/null_queries/tests.py
+++ b/tests/null_queries/tests.py
@@ -47,7 +47,7 @@ class NullQueriesTests(TestCase):
# Related managers use __exact=None implicitly if the object hasn't been saved.
p2 = Poll(question="How?")
- self.assertEqual(repr(p2.choice_set.all()), '[]')
+ self.assertEqual(repr(p2.choice_set.all()), '<QuerySet []>')
def test_reverse_relations(self):
"""