summaryrefslogtreecommitdiff
path: root/tests/i18n/patterns/urls/namespace.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/i18n/patterns/urls/namespace.py')
-rw-r--r--tests/i18n/patterns/urls/namespace.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/i18n/patterns/urls/namespace.py b/tests/i18n/patterns/urls/namespace.py
index 19cd5694da..466303ac6d 100644
--- a/tests/i18n/patterns/urls/namespace.py
+++ b/tests/i18n/patterns/urls/namespace.py
@@ -2,11 +2,11 @@ from django.urls import path, re_path
from django.utils.translation import gettext_lazy as _
from django.views.generic import TemplateView
-view = TemplateView.as_view(template_name='dummy.html')
+view = TemplateView.as_view(template_name="dummy.html")
-app_name = 'account'
+app_name = "account"
urlpatterns = [
- re_path(_(r'^register/$'), view, name='register'),
- re_path(_(r'^register-without-slash$'), view, name='register-without-slash'),
- path(_('register-as-path/'), view, name='register-as-path'),
+ re_path(_(r"^register/$"), view, name="register"),
+ re_path(_(r"^register-without-slash$"), view, name="register-without-slash"),
+ path(_("register-as-path/"), view, name="register-as-path"),
]