From d795259ea96004df0a2469246229a146307bcd2c Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Fri, 7 Oct 2022 13:05:35 +0200 Subject: Replaced assertQuerysetEqual() to assertSequenceEqual()/assertCountEqual() where appropriate. Follow up to 3f7b3275627385f8f7531fca01cdda50d4ec6b6e. --- tests/dates/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/dates') diff --git a/tests/dates/tests.py b/tests/dates/tests.py index ef145bafd0..bf1f748ff8 100644 --- a/tests/dates/tests.py +++ b/tests/dates/tests.py @@ -80,7 +80,7 @@ class DatesTests(TestCase): datetime.date(2010, 7, 28), ], ) - self.assertQuerysetEqual( + self.assertSequenceEqual( Article.objects.dates("comments__approval_date", "day"), [] ) self.assertSequenceEqual( -- cgit v1.3