summaryrefslogtreecommitdiff
path: root/tests/test_runner
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2013-12-16 11:52:05 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2013-12-17 10:17:46 +0100
commit4a56a93cc458e9ab4dcab95d9f5067d4975dd1a2 (patch)
tree93ef8485b68063367d7d1599004625a67e383faf /tests/test_runner
parentb3d5efe23fb5af586eb274c059ad17645da1c135 (diff)
downloaddjango-4a56a93cc458e9ab4dcab95d9f5067d4975dd1a2.tar.gz
Moved the new app cache inside core.
Diffstat (limited to 'tests/test_runner')
-rw-r--r--tests/test_runner/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_runner/tests.py b/tests/test_runner/tests.py
index 03cde80aab..04fa3b8784 100644
--- a/tests/test_runner/tests.py
+++ b/tests/test_runner/tests.py
@@ -225,7 +225,7 @@ class ModulesTestsPackages(IgnoreAllDeprecationWarningsMixin, unittest.TestCase)
def test_get_tests(self):
"Check that the get_tests helper function can find tests in a directory"
- from django.apps.base import AppConfig
+ from django.core.apps.base import AppConfig
from django.test.simple import get_tests
app_config = AppConfig(
'test_runner.valid_app',
@@ -236,7 +236,7 @@ class ModulesTestsPackages(IgnoreAllDeprecationWarningsMixin, unittest.TestCase)
def test_import_error(self):
"Test for #12658 - Tests with ImportError's shouldn't fail silently"
- from django.apps.base import AppConfig
+ from django.core.apps.base import AppConfig
from django.test.simple import get_tests
app_config = AppConfig(
'test_runner_invalid_app',