diff options
Diffstat (limited to 'tests/annotations/tests.py')
| -rw-r--r-- | tests/annotations/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/annotations/tests.py b/tests/annotations/tests.py index 52a268c4ae..8de2bf1998 100644 --- a/tests/annotations/tests.py +++ b/tests/annotations/tests.py @@ -212,7 +212,7 @@ class NonAggregateAnnotationTestCase(TestCase): with register_lookup(DecimalField, Floor): books = Book.objects.annotate(floor_price=F("price__floor")) - self.assertSequenceEqual( + self.assertCountEqual( books.values_list("pk", "floor_price"), [ (self.b1.pk, 30), |
