diff --git a/tests/model_inheritance_regress/tests.py b/tests/model_inheritance_regress/tests.py index e9288db345..6c593d4521 100644 --- a/tests/model_inheritance_regress/tests.py +++ b/tests/model_inheritance_regress/tests.py @@ -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