summaryrefslogtreecommitdiff
path: root/tests/proxy_model_inheritance
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2013-12-11 21:44:27 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2013-12-17 10:17:43 +0100
commit860c2c8bc5c77194c41464655851379bf512a052 (patch)
tree98a3688dbbb67151d944dfc8e943b00bced701b1 /tests/proxy_model_inheritance
parentfe1389e911b0cdc487e5547c09c920c12f4e1ce0 (diff)
downloaddjango-860c2c8bc5c77194c41464655851379bf512a052.tar.gz
Moved django.db.models.loading to django.apps.cache.
This commit doesn't contain any code changes; it's purely a refactoring.
Diffstat (limited to 'tests/proxy_model_inheritance')
-rw-r--r--tests/proxy_model_inheritance/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/proxy_model_inheritance/tests.py b/tests/proxy_model_inheritance/tests.py
index 9941506303..af22e7caed 100644
--- a/tests/proxy_model_inheritance/tests.py
+++ b/tests/proxy_model_inheritance/tests.py
@@ -3,9 +3,9 @@ from __future__ import unicode_literals
import os
import sys
+from django.apps.cache import cache, load_app
from django.conf import settings
from django.core.management import call_command
-from django.db.models.loading import cache, load_app
from django.test import TestCase, TransactionTestCase
from django.test.utils import override_settings
from django.utils._os import upath