mirror of
https://github.com/django/django.git
synced 2025-09-26 12:09:19 +00:00
Refs #33990 -- Renamed TransactionTestCase.assertQuerysetEqual() to assertQuerySetEqual().
Co-Authored-By: Michael Howitz <mh@gocept.com>
This commit is contained in:
parent
d795259ea9
commit
f0c06f8ab7
76 changed files with 689 additions and 660 deletions
|
@ -13,12 +13,12 @@ class LeftTests(TestCase):
|
|||
|
||||
def test_basic(self):
|
||||
authors = Author.objects.annotate(name_part=Left("name", 5))
|
||||
self.assertQuerysetEqual(
|
||||
self.assertQuerySetEqual(
|
||||
authors.order_by("name"), ["John ", "Rhond"], lambda a: a.name_part
|
||||
)
|
||||
# If alias is null, set it to the first 2 lower characters of the name.
|
||||
Author.objects.filter(alias__isnull=True).update(alias=Lower(Left("name", 2)))
|
||||
self.assertQuerysetEqual(
|
||||
self.assertQuerySetEqual(
|
||||
authors.order_by("name"), ["smithj", "rh"], lambda a: a.alias
|
||||
)
|
||||
|
||||
|
@ -30,6 +30,6 @@ class LeftTests(TestCase):
|
|||
authors = Author.objects.annotate(
|
||||
name_part=Left("name", Value(3, output_field=IntegerField()))
|
||||
)
|
||||
self.assertQuerysetEqual(
|
||||
self.assertQuerySetEqual(
|
||||
authors.order_by("name"), ["Joh", "Rho"], lambda a: a.name_part
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue