From 9217b89da3295116a098ae2a071a3c4a64a0a5d0 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Wed, 11 Dec 2013 22:19:19 +0100 Subject: Removed BaseAppCache.app_store. It was only storing redundant information. This is part of the effort to allow applications without a models module. --- tests/proxy_models/tests.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'tests/proxy_models/tests.py') diff --git a/tests/proxy_models/tests.py b/tests/proxy_models/tests.py index a900366744..5b9433bbf7 100644 --- a/tests/proxy_models/tests.py +++ b/tests/proxy_models/tests.py @@ -160,7 +160,6 @@ class ProxyModelTests(TestCase): # need to be removed in order to prevent bad interactions # with the flush operation in other tests. old_app_models = copy.deepcopy(cache.app_models) - old_app_store = copy.deepcopy(cache.app_store) class SwappableModel(models.Model): @@ -178,7 +177,6 @@ class ProxyModelTests(TestCase): proxy = True finally: cache.app_models = old_app_models - cache.app_store = old_app_store def test_myperson_manager(self): Person.objects.create(name="fred") -- cgit v1.2.1