summaryrefslogtreecommitdiff
path: root/tests/custom_columns
diff options
context:
space:
mode:
Diffstat (limited to 'tests/custom_columns')
-rw-r--r--tests/custom_columns/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/custom_columns/tests.py b/tests/custom_columns/tests.py
index 75bba4bf12..fab77847b0 100644
--- a/tests/custom_columns/tests.py
+++ b/tests/custom_columns/tests.py
@@ -92,7 +92,7 @@ class CustomColumnsTests(TestCase):
def test_author_get(self):
self.assertEqual(self.a1, Author.objects.get(first_name__exact='John'))
- def test_filter_on_nonexistant_field(self):
+ def test_filter_on_nonexistent_field(self):
self.assertRaisesMessage(
FieldError,
"Cannot resolve keyword 'firstname' into field. Choices are: Author_ID, article, first_name, last_name, primary_set",