Updated test URL patterns to use path() and re_path().

This commit is contained in:
Tim Graham 2018-12-07 17:52:28 -05:00
parent 1136d57f01
commit 043bd70942
104 changed files with 692 additions and 673 deletions

View file

@ -1,5 +1,5 @@
from django.conf.urls import url
from django.http import FileResponse, HttpResponse
from django.urls import path
def helloworld(request):
@ -7,6 +7,6 @@ def helloworld(request):
urlpatterns = [
url("^$", helloworld),
url(r'^file/$', lambda x: FileResponse(open(__file__, 'rb'))),
path('', helloworld),
path('file/', lambda x: FileResponse(open(__file__, 'rb'))),
]