diff options
| author | Nick Pope <nick@nickpope.me.uk> | 2022-02-22 09:29:38 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-22 10:29:38 +0100 |
| commit | 847f46e9bf88964484c8b76a10af753ea1018311 (patch) | |
| tree | 13aced534cbae373f47cce8fce1444ad0e8e01d3 /tests/foreign_object | |
| parent | 7ba6ebe9149ae38257d70100e8bfbfd0da189862 (diff) | |
Removed redundant QuerySet.all() calls in docs and tests.
Most QuerySet methods are mapped onto the Manager and, in general,
it isn't necessary to call .all() on the manager.
Diffstat (limited to 'tests/foreign_object')
| -rw-r--r-- | tests/foreign_object/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/foreign_object/tests.py b/tests/foreign_object/tests.py index f63abf82bd..fc41c043f5 100644 --- a/tests/foreign_object/tests.py +++ b/tests/foreign_object/tests.py @@ -238,7 +238,7 @@ class MultiColumnFKTests(TestCase): for m in Membership.objects.select_related("person").order_by("pk") ] - normal_people = [m.person for m in Membership.objects.all().order_by("pk")] + normal_people = [m.person for m in Membership.objects.order_by("pk")] self.assertEqual(people, normal_people) def test_prefetch_foreignkey_forward_works(self): |
