summaryrefslogtreecommitdiff
path: root/tests/check_framework/urls/beginning_with_slash.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/check_framework/urls/beginning_with_slash.py')
-rw-r--r--tests/check_framework/urls/beginning_with_slash.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/check_framework/urls/beginning_with_slash.py b/tests/check_framework/urls/beginning_with_slash.py
index 8dac96745c..bd4e29d8f1 100644
--- a/tests/check_framework/urls/beginning_with_slash.py
+++ b/tests/check_framework/urls/beginning_with_slash.py
@@ -1,7 +1,6 @@
-from django.conf.urls import url
-from django.urls import path
+from django.urls import path, re_path
urlpatterns = [
path('/path-starting-with-slash/', lambda x: x),
- url(r'/url-starting-with-slash/$', lambda x: x),
+ re_path(r'/url-starting-with-slash/$', lambda x: x),
]