summaryrefslogtreecommitdiff
path: root/tests/contenttypes_tests
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2018-12-07 17:52:28 -0500
committerTim Graham <timograham@gmail.com>2018-12-31 10:47:32 -0500
commit043bd709425149b8eff3fb821cba5c23aaebd0df (patch)
tree7624be405a6a6e5a041e2852251ef76e9d28fa7d /tests/contenttypes_tests
parent1136d57f01ce3e3efab44163ccd7b3b34ec4207f (diff)
downloaddjango-043bd709425149b8eff3fb821cba5c23aaebd0df.tar.gz
Updated test URL patterns to use path() and re_path().
Diffstat (limited to 'tests/contenttypes_tests')
-rw-r--r--tests/contenttypes_tests/urls.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/contenttypes_tests/urls.py b/tests/contenttypes_tests/urls.py
index 779e8c4a60..1403b00ac4 100644
--- a/tests/contenttypes_tests/urls.py
+++ b/tests/contenttypes_tests/urls.py
@@ -1,6 +1,6 @@
-from django.conf.urls import url
from django.contrib.contenttypes import views
+from django.urls import re_path
urlpatterns = [
- url(r'^shortcut/([0-9]+)/(.*)/$', views.shortcut),
+ re_path(r'^shortcut/([0-9]+)/(.*)/$', views.shortcut),
]