summaryrefslogtreecommitdiff
path: root/tests/model_inheritance
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/model_inheritance
parent7b420367524ad9f29b8bf0284f4b40bd6cfc8b93 (diff)
downloaddjango-a71a2ea756673cd3c7a2c5125fa7e7f334b05475.tar.gz
Fixed typos using https://github.com/vlajos/misspell_fixer
Diffstat (limited to 'tests/model_inheritance')
-rw-r--r--tests/model_inheritance/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/model_inheritance/tests.py b/tests/model_inheritance/tests.py
index 77210174a0..19d7b5650f 100644
--- a/tests/model_inheritance/tests.py
+++ b/tests/model_inheritance/tests.py
@@ -281,7 +281,7 @@ class ModelInheritanceTests(TestCase):
.defer("italianrestaurant__serves_gnocchi")
.order_by("rating"))
- # Test that the field was actually defered
+ # Test that the field was actually deferred
with self.assertNumQueries(2):
objs = list(qs.all())
self.assertTrue(objs[1].italianrestaurant.serves_gnocchi)