summaryrefslogtreecommitdiff
path: root/tests/shortcuts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/shortcuts')
-rw-r--r--tests/shortcuts/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/shortcuts/tests.py b/tests/shortcuts/tests.py
index 08bcc55343..74acb13d7e 100644
--- a/tests/shortcuts/tests.py
+++ b/tests/shortcuts/tests.py
@@ -1,4 +1,4 @@
-from django.test import TestCase, ignore_warnings, override_settings
+from django.test import SimpleTestCase, ignore_warnings, override_settings
from django.test.utils import require_jinja2
from django.utils.deprecation import RemovedInDjango20Warning
@@ -6,7 +6,7 @@ from django.utils.deprecation import RemovedInDjango20Warning
@override_settings(
ROOT_URLCONF='shortcuts.urls',
)
-class ShortcutTests(TestCase):
+class ShortcutTests(SimpleTestCase):
def test_render_to_response(self):
response = self.client.get('/render_to_response/')