mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
Refs #33990 -- Renamed TransactionTestCase.assertQuerysetEqual() to assertQuerySetEqual().
Co-Authored-By: Michael Howitz <mh@gocept.com>
This commit is contained in:
committed by
Mariusz Felisiak
parent
d795259ea9
commit
f0c06f8ab7
@@ -70,7 +70,7 @@ class DeferRegressionTest(TestCase):
|
||||
obj = Leaf.objects.only("name", "child").select_related()[0]
|
||||
self.assertEqual(obj.child.name, "c1")
|
||||
|
||||
self.assertQuerysetEqual(
|
||||
self.assertQuerySetEqual(
|
||||
Leaf.objects.select_related().only("child__name", "second_child__name"),
|
||||
[
|
||||
"l1",
|
||||
|
||||
Reference in New Issue
Block a user