summaryrefslogtreecommitdiff
path: root/tests/app_loading
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2013-12-11 22:19:19 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2013-12-17 10:17:44 +0100
commit9217b89da3295116a098ae2a071a3c4a64a0a5d0 (patch)
tree88eb0884efa3b0bdbf6107113045f5e62f6c19ce /tests/app_loading
parent860c2c8bc5c77194c41464655851379bf512a052 (diff)
downloaddjango-9217b89da3295116a098ae2a071a3c4a64a0a5d0.tar.gz
Removed BaseAppCache.app_store.
It was only storing redundant information. This is part of the effort to allow applications without a models module.
Diffstat (limited to 'tests/app_loading')
-rw-r--r--tests/app_loading/tests.py2
1 files changed, 0 insertions, 2 deletions
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"""