From 6b402b28b3d589f2de6c505b2be5361df3e6ad10 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Mon, 26 Aug 2019 16:14:29 +1000 Subject: [PATCH] Fixed typo in tests/prefetch_related/tests.py comment. --- tests/prefetch_related/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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')