Fixed #34731, Refs #34118 -- Replaced assertEquals() with assertEqual() in test_condition_with_func_and_lookup_outside_relation_name().

Signed-off-by: Michel Alexandre Salim <salimma@fedoraproject.org>
This commit is contained in:
Michel Alexandre Salim 2023-07-21 14:18:24 -05:00 committed by GitHub
parent 02376f1f53
commit 62b83889e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -649,7 +649,7 @@ class FilteredRelationTests(TestCase):
),
),
).filter(book_editor__isnull=False)
self.assertEquals(qs.count(), 1)
self.assertEqual(qs.count(), 1)
def test_condition_deeper_relation_name(self):
msg = (