From f0c06f8ab7904e1fd082f2de57337f6c7e05f177 Mon Sep 17 00:00:00 2001 From: Gregor Gärtner Date: Sat, 24 Sep 2022 11:29:58 +0100 Subject: Refs #33990 -- Renamed TransactionTestCase.assertQuerysetEqual() to assertQuerySetEqual(). Co-Authored-By: Michael Howitz --- tests/custom_methods/tests.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/custom_methods') diff --git a/tests/custom_methods/tests.py b/tests/custom_methods/tests.py index 2bae2d2623..43232e2132 100644 --- a/tests/custom_methods/tests.py +++ b/tests/custom_methods/tests.py @@ -15,14 +15,14 @@ class MethodsTests(TestCase): ) self.assertFalse(a.was_published_today()) - self.assertQuerysetEqual( + self.assertQuerySetEqual( a.articles_from_same_day_1(), [ "Beatles reunite", ], lambda a: a.headline, ) - self.assertQuerysetEqual( + self.assertQuerySetEqual( a.articles_from_same_day_2(), [ "Beatles reunite", @@ -30,14 +30,14 @@ class MethodsTests(TestCase): lambda a: a.headline, ) - self.assertQuerysetEqual( + self.assertQuerySetEqual( b.articles_from_same_day_1(), [ "Parrot programs in Python", ], lambda a: a.headline, ) - self.assertQuerysetEqual( + self.assertQuerySetEqual( b.articles_from_same_day_2(), [ "Parrot programs in Python", -- cgit v1.3