summaryrefslogtreecommitdiff
path: root/tests/auth_tests/settings.py
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2020-05-14 10:27:35 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-05-14 11:00:51 +0200
commitd522b51c401429c169d88742178a9b3777903d9e (patch)
tree3906605a21d2e83dbc44642bef2685432c4e141d /tests/auth_tests/settings.py
parente341bed606d8ab2864838795276692cf86b08687 (diff)
Fixed #31575 -- Added system check for admin sidebar request context processor dependency.
Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es>
Diffstat (limited to 'tests/auth_tests/settings.py')
-rw-r--r--tests/auth_tests/settings.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/auth_tests/settings.py b/tests/auth_tests/settings.py
index 9fd71dfe87..5de7f3be45 100644
--- a/tests/auth_tests/settings.py
+++ b/tests/auth_tests/settings.py
@@ -11,6 +11,7 @@ AUTH_TEMPLATES = [{
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
+ 'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],