diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2015-01-12 22:31:44 +0100 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2015-01-12 22:31:44 +0100 |
| commit | 5f7230e12f0d237cdc19d8930006b0fc7d9dbaa6 (patch) | |
| tree | 3780335d2abb7d5e760c8ef7ac4819ba6e154574 /tests/admin_views | |
| parent | 511a53b3142551a1bc3093ed1b6655f57634f510 (diff) | |
Fixed #24124 (again) -- Updated tests with new default context_processors.
Thanks Collin for the review.
Diffstat (limited to 'tests/admin_views')
| -rw-r--r-- | tests/admin_views/tests.py | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/tests/admin_views/tests.py b/tests/admin_views/tests.py index 04dfb096a5..f991982fe5 100644 --- a/tests/admin_views/tests.py +++ b/tests/admin_views/tests.py @@ -800,10 +800,7 @@ class AdminViewBasicTest(AdminViewBasicTestCase): 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', - 'django.template.context_processors.i18n', - 'django.template.context_processors.tz', - 'django.template.context_processors.media', - 'django.template.context_processors.static', + 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', ], @@ -4499,9 +4496,7 @@ class AdminDocsTest(TestCase): 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', - 'django.template.context_processors.tz', - 'django.template.context_processors.media', - 'django.template.context_processors.static', + 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', ], |
