summaryrefslogtreecommitdiff
path: root/tests/csrf_tests
diff options
context:
space:
mode:
authorRam Rachum <ram@rachum.com>2020-02-25 15:16:19 +0200
committerGitHub <noreply@github.com>2020-02-25 14:16:19 +0100
commit5b09354954348f1a56df32b2d7dbe074a23a4532 (patch)
treeabf67c8d665b7e97999fb5137c111a0f64f0a6a6 /tests/csrf_tests
parent271fdab8b78af558238df51c64b4d1c8dd0792bb (diff)
downloaddjango-5b09354954348f1a56df32b2d7dbe074a23a4532.tar.gz
Fixed #31291 -- Renamed salt to mask for CSRF tokens.
Diffstat (limited to 'tests/csrf_tests')
-rw-r--r--tests/csrf_tests/test_context_processor.py2
-rw-r--r--tests/csrf_tests/tests.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/csrf_tests/test_context_processor.py b/tests/csrf_tests/test_context_processor.py
index 62e4365cd8..62bde2d085 100644
--- a/tests/csrf_tests/test_context_processor.py
+++ b/tests/csrf_tests/test_context_processor.py
@@ -1,5 +1,5 @@
from django.http import HttpRequest
-from django.middleware.csrf import _compare_salted_tokens as equivalent_tokens
+from django.middleware.csrf import _compare_masked_tokens as equivalent_tokens
from django.template.context_processors import csrf
from django.test import SimpleTestCase
diff --git a/tests/csrf_tests/tests.py b/tests/csrf_tests/tests.py
index 0a55cc307e..63cbd08c94 100644
--- a/tests/csrf_tests/tests.py
+++ b/tests/csrf_tests/tests.py
@@ -7,7 +7,7 @@ from django.http import HttpRequest, HttpResponse
from django.middleware.csrf import (
CSRF_SESSION_KEY, CSRF_TOKEN_LENGTH, REASON_BAD_TOKEN,
REASON_NO_CSRF_COOKIE, CsrfViewMiddleware,
- _compare_salted_tokens as equivalent_tokens, get_token,
+ _compare_masked_tokens as equivalent_tokens, get_token,
)
from django.test import SimpleTestCase, override_settings
from django.views.decorators.csrf import csrf_exempt, requires_csrf_token