diff options
| author | Simon Charette <charette.s@gmail.com> | 2015-04-17 17:38:20 -0400 |
|---|---|---|
| committer | Simon Charette <charette.s@gmail.com> | 2015-05-20 13:46:13 -0400 |
| commit | be67400b477c1b0e7e81766f41bbceed0de74bdc (patch) | |
| tree | fd8e6d087082754df9159a5549bfa80e2a8c57d9 /tests/field_subclassing | |
| parent | e2b77aceddbda9071fcfc38f90fb50d091d0b5fc (diff) | |
Refs #24652 -- Used SimpleTestCase where appropriate.
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() |
