summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2015-01-12 22:31:44 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2015-01-12 22:31:44 +0100
commit5f7230e12f0d237cdc19d8930006b0fc7d9dbaa6 (patch)
tree3780335d2abb7d5e760c8ef7ac4819ba6e154574 /django
parent511a53b3142551a1bc3093ed1b6655f57634f510 (diff)
Fixed #24124 (again) -- Updated tests with new default context_processors.
Thanks Collin for the review.
Diffstat (limited to 'django')
-rw-r--r--django/contrib/auth/tests/settings.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/django/contrib/auth/tests/settings.py b/django/contrib/auth/tests/settings.py
index 7697558387..ce2aa7d152 100644
--- a/django/contrib/auth/tests/settings.py
+++ b/django/contrib/auth/tests/settings.py
@@ -15,11 +15,6 @@ AUTH_TEMPLATES = [{
'OPTIONS': {
'context_processors': (
'django.contrib.auth.context_processors.auth',
- 'django.template.context_processors.debug',
- 'django.template.context_processors.i18n',
- 'django.template.context_processors.media',
- 'django.template.context_processors.static',
- 'django.template.context_processors.tz',
'django.contrib.messages.context_processors.messages',
),
},