summaryrefslogtreecommitdiff
path: root/tests/tablespaces
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/tablespaces
parent860c2c8bc5c77194c41464655851379bf512a052 (diff)
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/tablespaces')
-rw-r--r--tests/tablespaces/tests.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/tablespaces/tests.py b/tests/tablespaces/tests.py
index 0ee1b0e742..04240bcaa1 100644
--- a/tests/tablespaces/tests.py
+++ b/tests/tablespaces/tests.py
@@ -29,7 +29,6 @@ class TablespacesTests(TestCase):
# The unmanaged models need to be removed after the test 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)
for model in Article, Authors, Reviewers, Scientist:
model._meta.managed = True
@@ -39,7 +38,6 @@ class TablespacesTests(TestCase):
model._meta.managed = False
cache.app_models = self.old_app_models
- cache.app_store = self.old_app_store
cache._get_models_cache = {}
def assertNumContains(self, haystack, needle, count):