mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Refs #24652 -- Used SimpleTestCase where appropriate.
This commit is contained in:
parent
e2b77acedd
commit
be67400b47
93 changed files with 362 additions and 340 deletions
|
@ -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/')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue