summaryrefslogtreecommitdiff
path: root/tests/base
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2013-12-24 12:25:17 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2013-12-24 12:25:17 +0100
commit1716b7ce5a02b2a77188dfea2d41e25dfa58821c (patch)
treef3422c0d6725f45756a3b9deb32406d319b8a72e /tests/base
parente9e522a8e7455900a775678e5d6bc518a289b8d1 (diff)
downloaddjango-1716b7ce5a02b2a77188dfea2d41e25dfa58821c.tar.gz
Renamed AppCache to Apps.
Also renamed app_cache to apps and "app cache" to "app registry". Deprecated AppCache.app_cache_ready() in favor of Apps.ready().
Diffstat (limited to 'tests/base')
-rw-r--r--tests/base/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/base/models.py b/tests/base/models.py
index 23efdf9d5b..f84d64df53 100644
--- a/tests/base/models.py
+++ b/tests/base/models.py
@@ -5,7 +5,7 @@ from django.utils import six
# The models definitions below used to crash. Generating models dynamically
-# at runtime is a bad idea because it pollutes the app cache. This doesn't
+# at runtime is a bad idea because it pollutes the app registry. This doesn't
# integrate well with the test suite but at least it prevents regressions.