summaryrefslogtreecommitdiff
path: root/tests/admin_custom_urls/models.py
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/admin_custom_urls/models.py
parent1136d57f01ce3e3efab44163ccd7b3b34ec4207f (diff)
Updated test URL patterns to use path() and re_path().
Diffstat (limited to 'tests/admin_custom_urls/models.py')
-rw-r--r--tests/admin_custom_urls/models.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/admin_custom_urls/models.py b/tests/admin_custom_urls/models.py
index 1fc30ec18c..8b91383b0f 100644
--- a/tests/admin_custom_urls/models.py
+++ b/tests/admin_custom_urls/models.py
@@ -33,7 +33,7 @@ class ActionAdmin(admin.ModelAdmin):
def get_urls(self):
# Add the URL of our custom 'add_view' view to the front of the URLs
# list. Remove the existing one(s) first
- from django.conf.urls import url
+ from django.urls import re_path
def wrap(view):
def wrapper(*args, **kwargs):
@@ -45,7 +45,7 @@ class ActionAdmin(admin.ModelAdmin):
view_name = '%s_%s_add' % info
return [
- url(r'^!add/$', wrap(self.add_view), name=view_name),
+ re_path('^!add/$', wrap(self.add_view), name=view_name),
] + self.remove_url(view_name)