summaryrefslogtreecommitdiff
path: root/tests/custom_columns
diff options
context:
space:
mode:
authorVeres Lajos <vlajos@gmail.com>2014-11-03 22:48:03 +0000
committerTim Graham <timograham@gmail.com>2014-11-03 20:59:30 -0500
commita71a2ea756673cd3c7a2c5125fa7e7f334b05475 (patch)
tree61cff2d319c13011d004d0f008fe1957fd773651 /tests/custom_columns
parent7b420367524ad9f29b8bf0284f4b40bd6cfc8b93 (diff)
downloaddjango-a71a2ea756673cd3c7a2c5125fa7e7f334b05475.tar.gz
Fixed typos using https://github.com/vlajos/misspell_fixer
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",