mirror of
https://github.com/django/django.git
synced 2025-10-28 16:16:12 +00:00
Fixed #19462 -- Made assertQuerysetEqual detect undefined ordering
If there are more than one values to compare against and the qs isn't ordered then assertQuerysetEqual will raise a ValueError.
This commit is contained in:
@@ -158,6 +158,7 @@ class ExpressionsTests(TestCase):
|
||||
"Max Mustermann",
|
||||
],
|
||||
lambda c: six.text_type(c.point_of_contact),
|
||||
ordered=False
|
||||
)
|
||||
|
||||
c = Company.objects.all()[0]
|
||||
@@ -170,7 +171,8 @@ class ExpressionsTests(TestCase):
|
||||
"Foobar Ltd.",
|
||||
"Test GmbH",
|
||||
],
|
||||
lambda c: c.name
|
||||
lambda c: c.name,
|
||||
ordered=False
|
||||
)
|
||||
|
||||
Company.objects.exclude(
|
||||
|
||||
Reference in New Issue
Block a user