diff options
author | Marten Kenbeek <marten.knbk@gmail.com> | 2015-12-30 16:51:16 +0100 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2015-12-31 14:21:29 -0500 |
commit | 16411b8400ad08f90c236bb2e18f65c655f903f8 (patch) | |
tree | df01123093c126222e8f492512472e5834966100 /django/test/utils.py | |
parent | df3d5b1d73699b323aac377dffab039dca26c1e4 (diff) | |
download | django-16411b8400ad08f90c236bb2e18f65c655f903f8.tar.gz |
Fixed #26013 -- Moved django.core.urlresolvers to django.urls.
Thanks to Tim Graham for the review.
Diffstat (limited to 'django/test/utils.py')
-rw-r--r-- | django/test/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/test/utils.py b/django/test/utils.py index e665ea1ec3..4e27af9004 100644 --- a/django/test/utils.py +++ b/django/test/utils.py @@ -12,11 +12,11 @@ from django.apps import apps from django.conf import UserSettingsHolder, settings from django.core import mail from django.core.signals import request_started -from django.core.urlresolvers import get_script_prefix, set_script_prefix from django.db import reset_queries from django.http import request from django.template import Template from django.test.signals import setting_changed, template_rendered +from django.urls import get_script_prefix, set_script_prefix from django.utils import six from django.utils.decorators import ContextDecorator from django.utils.encoding import force_str |