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/app_loading/tests.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'tests/app_loading') diff --git a/tests/app_loading/tests.py b/tests/app_loading/tests.py index 4795ca4139..a8a5ba120f 100644 --- a/tests/app_loading/tests.py +++ b/tests/app_loading/tests.py @@ -20,12 +20,10 @@ class EggLoadingTest(TestCase): # need to be removed in order to prevent bad interactions # with the flush operation in other tests. self.old_app_models = copy.deepcopy(cache.app_models) - self.old_app_store = copy.deepcopy(cache.app_store) def tearDown(self): sys.path = self.old_path cache.app_models = self.old_app_models - cache.app_store = self.old_app_store def test_egg1(self): """Models module can be loaded from an app in an egg""" -- cgit v1.3