mirror of
https://github.com/django/django.git
synced 2025-08-03 10:34:04 +00:00
Removed BaseAppCache.app_store.
It was only storing redundant information. This is part of the effort to allow applications without a models module.
This commit is contained in:
parent
860c2c8bc5
commit
9217b89da3
9 changed files with 20 additions and 50 deletions
|
@ -133,11 +133,9 @@ class MakeMigrationsTests(MigrationTestBase):
|
|||
self.migration_dir = os.path.join(self.test_dir, 'migrations_%d' % self.creation_counter)
|
||||
self.migration_pkg = "migrations.migrations_%d" % self.creation_counter
|
||||
self._old_app_models = copy.deepcopy(cache.app_models)
|
||||
self._old_app_store = copy.deepcopy(cache.app_store)
|
||||
|
||||
def tearDown(self):
|
||||
cache.app_models = self._old_app_models
|
||||
cache.app_store = self._old_app_store
|
||||
cache._get_models_cache = {}
|
||||
|
||||
os.chdir(self.test_dir)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue