summaryrefslogtreecommitdiff
path: root/tests/lookup/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lookup/tests.py')
-rw-r--r--tests/lookup/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lookup/tests.py b/tests/lookup/tests.py
index 1da7084e48..f826a480a1 100644
--- a/tests/lookup/tests.py
+++ b/tests/lookup/tests.py
@@ -252,7 +252,7 @@ class LookupTests(TestCase):
],
)
# However, an exception FieldDoesNotExist will be thrown if you specify
- # a non-existent field name in values() (a field that is neither in the
+ # a nonexistent field name in values() (a field that is neither in the
# model nor in extra(select)).
with self.assertRaises(FieldError):
Article.objects.extra(select={'id_plus_one': 'id + 1'}).values('id', 'id_plus_two')