Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the test app urls for tests to work for Django 1.10 and 1.11 #86

Open
wants to merge 3 commits into
base: django-1.11
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions geoposition/tests/urls.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
from django.conf.urls import patterns, include, url
from django.conf.urls import include, url
from django.contrib import admin
from example.views import poi_list

admin.autodiscover()

urlpatterns = patterns('',
url(r'^$', 'example.views.poi_list'),
url(r'^admin/', include(admin.site.urls)),
)
urlpatterns = [
url(r'^$', poi_list),
url(r'^admin/', admin.site.urls),
]