summaryrefslogtreecommitdiff
path: root/tests/resolve_url
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2013-07-01 14:22:27 +0200
committerAymeric Augustin <aymeric.augustin@m4x.org>2013-07-01 14:29:33 +0200
commitcfcf4b3605f9653e4e056088d89932b2a0e4281b (patch)
tree1eed1ebdb087b26abeddf5245fc723930d14d847 /tests/resolve_url
parent7f264e02f4480c49d1440be882416a10951c2165 (diff)
downloaddjango-cfcf4b3605f9653e4e056088d89932b2a0e4281b.tar.gz
Stopped using django.utils.unittest in the test suite.
Refs #20680.
Diffstat (limited to 'tests/resolve_url')
-rw-r--r--tests/resolve_url/tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/resolve_url/tests.py b/tests/resolve_url/tests.py
index d0bf44abde..70f9e51781 100644
--- a/tests/resolve_url/tests.py
+++ b/tests/resolve_url/tests.py
@@ -1,8 +1,9 @@
from __future__ import unicode_literals
+from unittest import TestCase
+
from django.core.urlresolvers import NoReverseMatch
from django.contrib.auth.views import logout
-from django.utils.unittest import TestCase
from django.shortcuts import resolve_url
from .models import UnimportantThing