diff options
| author | Gregor Gärtner <code@gregorgaertner.de> | 2022-09-24 11:29:58 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-10-08 08:07:38 +0200 |
| commit | f0c06f8ab7904e1fd082f2de57337f6c7e05f177 (patch) | |
| tree | 2073bfe1bb55350d9516f9a54ad7d9895a84ca48 /tests/foreign_object/test_agnostic_order_trimjoin.py | |
| parent | d795259ea96004df0a2469246229a146307bcd2c (diff) | |
Refs #33990 -- Renamed TransactionTestCase.assertQuerysetEqual() to assertQuerySetEqual().
Co-Authored-By: Michael Howitz <mh@gocept.com>
Diffstat (limited to 'tests/foreign_object/test_agnostic_order_trimjoin.py')
| -rw-r--r-- | tests/foreign_object/test_agnostic_order_trimjoin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/foreign_object/test_agnostic_order_trimjoin.py b/tests/foreign_object/test_agnostic_order_trimjoin.py index c5b8f66e7b..745da1d97f 100644 --- a/tests/foreign_object/test_agnostic_order_trimjoin.py +++ b/tests/foreign_object/test_agnostic_order_trimjoin.py @@ -13,14 +13,14 @@ class TestLookupQuery(TestCase): cls.contact1 = Contact.objects.create(company_code=1, customer_code=20) def test_deep_mixed_forward(self): - self.assertQuerysetEqual( + self.assertQuerySetEqual( Address.objects.filter(customer__contacts=self.contact1), [self.address.id], attrgetter("id"), ) def test_deep_mixed_backward(self): - self.assertQuerysetEqual( + self.assertQuerySetEqual( Contact.objects.filter(customer__address=self.address), [self.contact1.id], attrgetter("id"), |
