summaryrefslogtreecommitdiff
path: root/tests/model_options
diff options
context:
space:
mode:
authorJosh Soref <jsoref@users.noreply.github.com>2015-12-02 23:55:50 +0000
committerTim Graham <timograham@gmail.com>2015-12-03 12:48:24 -0500
commit93452a70e8a62c7408eeded444f5088d4a26212d (patch)
treedfc64c81f0610e45650350e2d41918f5913ed098 /tests/model_options
parentb6dd0afead80a17d0ac8c3ba35c510afac32a0b8 (diff)
downloaddjango-93452a70e8a62c7408eeded444f5088d4a26212d.tar.gz
Fixed many spelling mistakes in code, comments, and docs.
Diffstat (limited to 'tests/model_options')
-rw-r--r--tests/model_options/test_default_related_name.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/model_options/test_default_related_name.py b/tests/model_options/test_default_related_name.py
index a30de192cb..940e1c3eb8 100644
--- a/tests/model_options/test_default_related_name.py
+++ b/tests/model_options/test_default_related_name.py
@@ -39,7 +39,7 @@ class DefaultRelatedNameTests(TestCase):
except AttributeError:
self.fail("Book should have a model_options_bookstores relation.")
- def test_inheritance_with_overrided_default_related_name(self):
+ def test_inheritance_with_overridden_default_related_name(self):
try:
self.book.editor_stores
except AttributeError: