diff options
| author | Tim Graham <timograham@gmail.com> | 2019-11-18 06:32:37 -0500 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-11-18 12:32:37 +0100 |
| commit | 9100c664db5cca7512947e23d588cfcb937a7a92 (patch) | |
| tree | 18a97cf4d7d137bf492f78c592df5839d9e8d08f /tests/annotations | |
| parent | 5e2839f3207a02c05b96d761b2441d1ef4d920d4 (diff) | |
Relaxed some query ordering assertions in tests.
It accounts for differences seen on cockroachdb.
Diffstat (limited to 'tests/annotations')
| -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 c39e8d3fbe..db4413564c 100644 --- a/tests/annotations/tests.py +++ b/tests/annotations/tests.py @@ -209,7 +209,7 @@ class NonAggregateAnnotationTestCase(TestCase): lengths = Employee.objects.annotate( name_len=Length('first_name'), ).distinct('name_len').values_list('name_len', flat=True) - self.assertSequenceEqual(lengths, [3, 7, 8]) + self.assertCountEqual(lengths, [3, 7, 8]) def test_filter_annotation(self): books = Book.objects.annotate( |
