We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7732f94 commit bb7f4f8Copy full SHA for bb7f4f8
1 file changed
tests/filtered_relation/tests.py
@@ -381,7 +381,7 @@ def test_union(self):
381
"book", condition=Q(book__title__iexact="the book by jane a")
382
),
383
).filter(book_jane__isnull=False)
384
- self.assertSequenceEqual(qs1.union(qs2), [self.author1, self.author2])
+ self.assertCountEqual(qs1.union(qs2), [self.author1, self.author2])
385
386
@skipUnlessDBFeature("supports_select_intersection")
387
def test_intersection(self):
0 commit comments