mirror of https://github.com/django/django.git
Obsolete since e9c24bef74
.
This commit is contained in:
parent
7f4fc5cbd4
commit
18245b948b
|
@ -246,16 +246,6 @@ class ModelInheritanceTest(TestCase):
|
|||
self.assertEqual(r.id, orig_id)
|
||||
self.assertEqual(r.id, r.place_ptr_id)
|
||||
|
||||
def test_issue_7488(self):
|
||||
# Regression test for #7488. This looks a little crazy, but it's the
|
||||
# equivalent of what the admin interface has to do for the edit-inline
|
||||
# case.
|
||||
suppliers = Supplier.objects.filter(
|
||||
restaurant=Restaurant(name="xx", address="yy")
|
||||
)
|
||||
suppliers = list(suppliers)
|
||||
self.assertEqual(suppliers, [])
|
||||
|
||||
def test_issue_11764(self):
|
||||
"""
|
||||
Regression test for #11764
|
||||
|
|
Loading…
Reference in New Issue