diff options
| author | Tim Graham <timograham@gmail.com> | 2018-12-07 17:52:28 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-12-31 10:47:32 -0500 |
| commit | 043bd709425149b8eff3fb821cba5c23aaebd0df (patch) | |
| tree | 7624be405a6a6e5a041e2852251ef76e9d28fa7d /tests/project_template | |
| parent | 1136d57f01ce3e3efab44163ccd7b3b34ec4207f (diff) | |
Updated test URL patterns to use path() and re_path().
Diffstat (limited to 'tests/project_template')
| -rw-r--r-- | tests/project_template/urls.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/project_template/urls.py b/tests/project_template/urls.py index db0e9bb42e..5a368ecef7 100644 --- a/tests/project_template/urls.py +++ b/tests/project_template/urls.py @@ -1,7 +1,7 @@ -from django.conf.urls import url +from django.urls import path from . import views urlpatterns = [ - url(r'^empty/$', views.empty_view), + path('empty/', views.empty_view), ] |
