Refs #24652 -- Used SimpleTestCase where appropriate.

This commit is contained in:
Simon Charette 2015-04-17 17:38:20 -04:00
parent e2b77acedd
commit be67400b47
93 changed files with 362 additions and 340 deletions

View file

@ -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/')