diff options
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 |
