From 0e9d3472d7f7b38d36be2f09393b04e1783bca3b Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Thu, 12 Dec 2013 11:28:04 +0100 Subject: Stored AppConfig objects instead of models modules in the app cache. This is a step towards allowing applications without a models module. --- tests/proxy_model_inheritance/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/proxy_model_inheritance') diff --git a/tests/proxy_model_inheritance/tests.py b/tests/proxy_model_inheritance/tests.py index 23058d122b..f3cdba20a9 100644 --- a/tests/proxy_model_inheritance/tests.py +++ b/tests/proxy_model_inheritance/tests.py @@ -32,8 +32,8 @@ class ProxyModelInheritanceTests(TransactionTestCase): def tearDown(self): sys.path = self.old_sys_path - del app_cache.app_labels['app1'] - del app_cache.app_labels['app2'] + del app_cache.app_configs['app1'] + del app_cache.app_configs['app2'] del app_cache.app_models['app1'] del app_cache.app_models['app2'] -- cgit v1.2.1