diff --git a/django/template/defaulttags.py b/django/template/defaulttags.py
index 43c557f179..762791be31 100644
--- a/django/template/defaulttags.py
+++ b/django/template/defaulttags.py
@@ -54,7 +54,7 @@ class CsrfTokenNode(Node):
if csrf_token == 'NOTPROVIDED':
return format_html("")
else:
- return format_html("", csrf_token)
+ return format_html('', csrf_token)
else:
# It's very probable that the token is missing because of
# misconfiguration, so we raise a warning
diff --git a/tests/csrf_tests/tests.py b/tests/csrf_tests/tests.py
index e63fbb8bd6..d9e57178e4 100644
--- a/tests/csrf_tests/tests.py
+++ b/tests/csrf_tests/tests.py
@@ -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)),