mirror of
https://github.com/django/django.git
synced 2025-08-29 23:14:23 +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
|
@ -25,7 +25,9 @@ from django.core.management import (
|
|||
from django.db import ConnectionHandler
|
||||
from django.db.migrations.exceptions import MigrationSchemaMissing
|
||||
from django.db.migrations.recorder import MigrationRecorder
|
||||
from django.test import LiveServerTestCase, TestCase, mock, override_settings
|
||||
from django.test import (
|
||||
LiveServerTestCase, SimpleTestCase, mock, override_settings,
|
||||
)
|
||||
from django.test.runner import DiscoverRunner
|
||||
from django.utils._os import npath, upath
|
||||
from django.utils.encoding import force_text
|
||||
|
@ -1695,7 +1697,7 @@ class CommandTypes(AdminScriptTestCase):
|
|||
self.assertOutput(out, "EXECUTE:LabelCommand label=anotherlabel, options=[('no_color', False), ('pythonpath', None), ('settings', None), ('traceback', False), ('verbosity', 1)]")
|
||||
|
||||
|
||||
class Discovery(TestCase):
|
||||
class Discovery(SimpleTestCase):
|
||||
|
||||
def test_precedence(self):
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue