From b3db6c8dcb5145f7d45eff517bcd96460475c879 Mon Sep 17 00:00:00 2001 From: Simon Charette Date: Thu, 18 Aug 2022 12:30:20 -0400 Subject: Fixed #21204 -- Tracked field deferrals by field instead of models. This ensures field deferral works properly when a model is involved more than once in the same query with a distinct deferral mask. --- tests/queries/tests.py | 6 ------ 1 file changed, 6 deletions(-) (limited to 'tests/queries') diff --git a/tests/queries/tests.py b/tests/queries/tests.py index 1238f021be..1bd72dd8b8 100644 --- a/tests/queries/tests.py +++ b/tests/queries/tests.py @@ -3594,12 +3594,6 @@ class WhereNodeTest(SimpleTestCase): class QuerySetExceptionTests(SimpleTestCase): - def test_iter_exceptions(self): - qs = ExtraInfo.objects.only("author") - msg = "'ManyToOneRel' object has no attribute 'attname'" - with self.assertRaisesMessage(AttributeError, msg): - list(qs) - def test_invalid_order_by(self): msg = "Cannot resolve keyword '*' into field. Choices are: created, id, name" with self.assertRaisesMessage(FieldError, msg): -- cgit v1.3