summaryrefslogtreecommitdiff
path: root/tests/prefetch_related
diff options
context:
space:
mode:
authorTim Gates <tim.gates@iress.com>2019-08-26 16:14:29 +1000
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-08-26 08:14:29 +0200
commit6b402b28b3d589f2de6c505b2be5361df3e6ad10 (patch)
treea7ba308f73485d7166a0ec82aab6662517b82ee2 /tests/prefetch_related
parentbb9e82f2748ace292a584841ab9af8696df27f53 (diff)
downloaddjango-6b402b28b3d589f2de6c505b2be5361df3e6ad10.tar.gz
Fixed typo in tests/prefetch_related/tests.py comment.
Diffstat (limited to 'tests/prefetch_related')
-rw-r--r--tests/prefetch_related/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/prefetch_related/tests.py b/tests/prefetch_related/tests.py
index 2a61508a0d..f3e0ecaddc 100644
--- a/tests/prefetch_related/tests.py
+++ b/tests/prefetch_related/tests.py
@@ -204,7 +204,7 @@ class PrefetchRelatedTests(TestDataMixin, TestCase):
def test_reverse_one_to_one_then_m2m(self):
"""
- A m2m relation can be followed afterr going through the select_related
+ A m2m relation can be followed after going through the select_related
reverse of an o2o.
"""
qs = Author.objects.prefetch_related('bio__books').select_related('bio')