summaryrefslogtreecommitdiff
path: root/tests/resolve_url
diff options
context:
space:
mode:
authorMarten Kenbeek <marten.knbk@gmail.com>2015-12-30 16:51:16 +0100
committerTim Graham <timograham@gmail.com>2015-12-31 14:21:29 -0500
commit16411b8400ad08f90c236bb2e18f65c655f903f8 (patch)
treedf01123093c126222e8f492512472e5834966100 /tests/resolve_url
parentdf3d5b1d73699b323aac377dffab039dca26c1e4 (diff)
downloaddjango-16411b8400ad08f90c236bb2e18f65c655f903f8.tar.gz
Fixed #26013 -- Moved django.core.urlresolvers to django.urls.
Thanks to Tim Graham for the review.
Diffstat (limited to 'tests/resolve_url')
-rw-r--r--tests/resolve_url/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/resolve_url/tests.py b/tests/resolve_url/tests.py
index 52e800a8c0..b909f68abe 100644
--- a/tests/resolve_url/tests.py
+++ b/tests/resolve_url/tests.py
@@ -1,9 +1,9 @@
from __future__ import unicode_literals
from django.contrib.auth.views import logout
-from django.core.urlresolvers import NoReverseMatch, reverse_lazy
from django.shortcuts import resolve_url
from django.test import SimpleTestCase, override_settings
+from django.urls import NoReverseMatch, reverse_lazy
from django.utils import six
from .models import UnimportantThing