summaryrefslogtreecommitdiff
path: root/tests/shortcuts
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2014-12-02 23:23:51 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2014-12-28 17:00:07 +0100
commit92e8f1f30223d95c0e71ee6ace7bdc476c81abbd (patch)
tree19139953edec69f849b0f1ea32821fdc4f38c491 /tests/shortcuts
parentc599f233b17d3890df8f648f8ead25141c21495c (diff)
downloaddjango-92e8f1f30223d95c0e71ee6ace7bdc476c81abbd.tar.gz
Moved context_processors from django.core to django.template.
Diffstat (limited to 'tests/shortcuts')
-rw-r--r--tests/shortcuts/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/shortcuts/tests.py b/tests/shortcuts/tests.py
index 2b55326311..029c150644 100644
--- a/tests/shortcuts/tests.py
+++ b/tests/shortcuts/tests.py
@@ -4,7 +4,7 @@ from django.test import TestCase, override_settings
@override_settings(
- TEMPLATE_CONTEXT_PROCESSORS=('django.core.context_processors.static',),
+ TEMPLATE_CONTEXT_PROCESSORS=('django.template.context_processors.static',),
STATIC_URL='/path/to/static/media/',
ROOT_URLCONF='shortcuts.urls',
)