mirror of
https://github.com/django/django.git
synced 2025-11-20 03:30:00 +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
|
|
@ -4,7 +4,7 @@ import inspect
|
|||
|
||||
from django.core import exceptions, serializers
|
||||
from django.db import connection
|
||||
from django.test import TestCase
|
||||
from django.test import SimpleTestCase, TestCase
|
||||
|
||||
from .fields import CustomTypedField, Small
|
||||
from .models import ChoicesModel, DataModel, MyModel, OtherModel
|
||||
|
|
@ -123,7 +123,7 @@ class CustomField(TestCase):
|
|||
o.full_clean()
|
||||
|
||||
|
||||
class TestDbType(TestCase):
|
||||
class TestDbType(SimpleTestCase):
|
||||
|
||||
def test_db_parameters_respects_db_type(self):
|
||||
f = CustomTypedField()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue