mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Used double quotation marks for csrf form element.
This commit is contained in:
parent
9e86185936
commit
98019df855
2 changed files with 2 additions and 2 deletions
|
@ -64,7 +64,7 @@ class CsrfViewMiddlewareTestMixin:
|
|||
|
||||
def _check_token_present(self, response, csrf_id=None):
|
||||
text = str(response.content, response.charset)
|
||||
match = re.search("name='csrfmiddlewaretoken' value='(.*?)'", text)
|
||||
match = re.search('name="csrfmiddlewaretoken" value="(.*?)"', text)
|
||||
csrf_token = csrf_id or self._csrf_id
|
||||
self.assertTrue(
|
||||
match and equivalent_tokens(csrf_token, match.group(1)),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue