mirror of
https://github.com/django/django.git
synced 2025-12-15 21:45:20 +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
|
|
@ -16,7 +16,7 @@ class SaveDeleteHookTests(TestCase):
|
|||
],
|
||||
)
|
||||
|
||||
self.assertQuerysetEqual(
|
||||
self.assertQuerySetEqual(
|
||||
Person.objects.all(),
|
||||
[
|
||||
"John Smith",
|
||||
|
|
@ -34,4 +34,4 @@ class SaveDeleteHookTests(TestCase):
|
|||
"After deletion",
|
||||
],
|
||||
)
|
||||
self.assertQuerysetEqual(Person.objects.all(), [])
|
||||
self.assertQuerySetEqual(Person.objects.all(), [])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue