diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2013-12-22 11:35:17 +0100 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2013-12-22 11:39:55 +0100 |
| commit | 2fef9e5375b0267734392080858d9fced15ee2f9 (patch) | |
| tree | 6bb12e97dd1d607f57f36ae34c0b492dbcf443ba /tests/app_cache | |
| parent | 99bd39ef6e1017f75c71fc276f43a941fe6081ea (diff) | |
Moved apps back in the toplevel django namespace.
Reverted 4a56a93cc458e9ab4dcab95d9f5067d4975dd1a2.
Diffstat (limited to 'tests/app_cache')
| -rw-r--r-- | tests/app_cache/models.py | 2 | ||||
| -rw-r--r-- | tests/app_cache/tests.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/app_cache/models.py b/tests/app_cache/models.py index 10e9e6f1de..9306830f9c 100644 --- a/tests/app_cache/models.py +++ b/tests/app_cache/models.py @@ -1,4 +1,4 @@ -from django.core.apps.cache import AppCache +from django.apps.cache import AppCache from django.db import models # We're testing app cache presence on load, so this is handy. diff --git a/tests/app_cache/tests.py b/tests/app_cache/tests.py index a531a22e8b..43133ab38f 100644 --- a/tests/app_cache/tests.py +++ b/tests/app_cache/tests.py @@ -1,7 +1,7 @@ from __future__ import absolute_import -from django.core.apps import app_cache -from django.core.apps.cache import AppCache +from django.apps import app_cache +from django.apps.cache import AppCache from django.db import models from django.test import TestCase |
