diff options
Diffstat (limited to 'tests/resolve_url')
| -rw-r--r-- | tests/resolve_url/tests.py | 4 |
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. """ |
