diff options
| author | Michel Alexandre Salim <michel@michel-slm.name> | 2023-07-21 14:18:24 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-21 21:18:24 +0200 |
| commit | 62b83889e066b8270854f7560e0498944efd7689 (patch) | |
| tree | 2c077d0a5a0bc68f9b397c35d794669ef29b0416 /tests/filtered_relation | |
| parent | 02376f1f53db24039c200ef4818d96accf16a88b (diff) | |
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>
Diffstat (limited to 'tests/filtered_relation')
| -rw-r--r-- | tests/filtered_relation/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/filtered_relation/tests.py b/tests/filtered_relation/tests.py index f74e3978f9..f9735ca371 100644 --- a/tests/filtered_relation/tests.py +++ b/tests/filtered_relation/tests.py @@ -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 = ( |
