From 18245b948bf7032a0b50d92a743eff822f5bc6a6 Mon Sep 17 00:00:00 2001 From: Albert Defler Date: Thu, 24 Feb 2022 09:55:02 +0100 Subject: [PATCH] Refs #7488, Refs #19524 -- Removed obsolete ModelInheritanceTest.test_issue_7488() test. Obsolete since e9c24bef74e55729b190cf07e0ac452aa4c86fcd. --- tests/model_inheritance_regress/tests.py | 10 ---------- 1 file changed, 10 deletions(-) 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