diff --git a/tests/prefetch_related/tests.py b/tests/prefetch_related/tests.py index 2a61508a0d9..f3e0ecaddc2 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')