mirror of
https://github.com/django/django.git
synced 2025-08-02 18:13:02 +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
|
@ -27,7 +27,8 @@ from django.forms.utils import ErrorList
|
|||
from django.template.loader import render_to_string
|
||||
from django.template.response import TemplateResponse
|
||||
from django.test import (
|
||||
TestCase, modify_settings, override_settings, skipUnlessDBFeature,
|
||||
SimpleTestCase, TestCase, modify_settings, override_settings,
|
||||
skipUnlessDBFeature,
|
||||
)
|
||||
from django.test.utils import override_script_prefix, patch_logger
|
||||
from django.utils import formats, six, translation
|
||||
|
@ -6150,7 +6151,7 @@ class InlineAdminViewOnSiteTest(TestCase):
|
|||
|
||||
|
||||
@override_settings(ROOT_URLCONF="admin_views.urls")
|
||||
class TestEtagWithAdminView(TestCase):
|
||||
class TestEtagWithAdminView(SimpleTestCase):
|
||||
# See https://code.djangoproject.com/ticket/16003
|
||||
|
||||
def test_admin(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue