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_deconstruction/tests.py | |
| parent | e2b77aceddbda9071fcfc38f90fb50d091d0b5fc (diff) | |
Refs #24652 -- Used SimpleTestCase where appropriate.
Diffstat (limited to 'tests/field_deconstruction/tests.py')
| -rw-r--r-- | tests/field_deconstruction/tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/field_deconstruction/tests.py b/tests/field_deconstruction/tests.py index 30c5e89213..6a0fe114ce 100644 --- a/tests/field_deconstruction/tests.py +++ b/tests/field_deconstruction/tests.py @@ -1,11 +1,11 @@ from __future__ import unicode_literals from django.db import models -from django.test import TestCase, override_settings +from django.test import SimpleTestCase, override_settings from django.utils import six -class FieldDeconstructionTests(TestCase): +class FieldDeconstructionTests(SimpleTestCase): """ Tests the deconstruct() method on all core fields. """ |
