summaryrefslogtreecommitdiff
path: root/tests/template_loader/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/template_loader/tests.py')
-rw-r--r--tests/template_loader/tests.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/template_loader/tests.py b/tests/template_loader/tests.py
index 5e62574666..c3bb444175 100644
--- a/tests/template_loader/tests.py
+++ b/tests/template_loader/tests.py
@@ -11,11 +11,14 @@ from django.test.client import RequestFactory
'APP_DIRS': True,
}, {
'BACKEND': 'django.template.backends.django.DjangoTemplates',
- 'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.request',
],
+ 'loaders': [
+ 'django.template.loaders.filesystem.Loader',
+ 'django.template.loaders.app_directories.Loader',
+ ]
},
}])
class TemplateLoaderTests(SimpleTestCase):