diff options
Diffstat (limited to 'tests/field_subclassing')
| -rw-r--r-- | tests/field_subclassing/tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/field_subclassing/tests.py b/tests/field_subclassing/tests.py index 4d3340260d..af56fb294f 100644 --- a/tests/field_subclassing/tests.py +++ b/tests/field_subclassing/tests.py @@ -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() |
