summaryrefslogtreecommitdiff
path: root/tests/resolve_url
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2015-04-17 17:38:20 -0400
committerSimon Charette <charette.s@gmail.com>2015-05-20 13:46:13 -0400
commitbe67400b477c1b0e7e81766f41bbceed0de74bdc (patch)
treefd8e6d087082754df9159a5549bfa80e2a8c57d9 /tests/resolve_url
parente2b77aceddbda9071fcfc38f90fb50d091d0b5fc (diff)
Refs #24652 -- Used SimpleTestCase where appropriate.
Diffstat (limited to 'tests/resolve_url')
-rw-r--r--tests/resolve_url/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/resolve_url/tests.py b/tests/resolve_url/tests.py
index b8ccd530e1..14c0fbb364 100644
--- a/tests/resolve_url/tests.py
+++ b/tests/resolve_url/tests.py
@@ -3,7 +3,7 @@ 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 TestCase, ignore_warnings, override_settings
+from django.test import SimpleTestCase, ignore_warnings, override_settings
from django.utils import six
from django.utils.deprecation import RemovedInDjango20Warning
@@ -11,7 +11,7 @@ from .models import UnimportantThing
@override_settings(ROOT_URLCONF='resolve_url.urls')
-class ResolveUrlTests(TestCase):
+class ResolveUrlTests(SimpleTestCase):
"""
Tests for the ``resolve_url`` function.
"""