Refs #7488, Refs #19524 -- Removed obsolete ModelInheritanceTest.test_issue_7488() test.

Obsolete since e9c24bef74.
This commit is contained in:
Albert Defler 2022-02-24 09:55:02 +01:00 committed by Mariusz Felisiak
parent 7f4fc5cbd4
commit 18245b948b
1 changed files with 0 additions and 10 deletions

View File

@ -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