mirror of https://github.com/django/django.git
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:
parent
02376f1f53
commit
62b83889e0
|
@ -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 = (
|
||||
|
|
Loading…
Reference in New Issue