summaryrefslogtreecommitdiff
path: root/tests/timezones
diff options
context:
space:
mode:
Diffstat (limited to 'tests/timezones')
-rw-r--r--tests/timezones/tests.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/timezones/tests.py b/tests/timezones/tests.py
index 30878e0d30..18539687a8 100644
--- a/tests/timezones/tests.py
+++ b/tests/timezones/tests.py
@@ -18,8 +18,8 @@ from django.template import (
Context, RequestContext, Template, TemplateSyntaxError, context_processors,
)
from django.test import (
- TestCase, TransactionTestCase, override_settings, skipIfDBFeature,
- skipUnlessDBFeature,
+ SimpleTestCase, TestCase, TransactionTestCase, override_settings,
+ skipIfDBFeature, skipUnlessDBFeature,
)
from django.test.utils import requires_tz_support
from django.utils import six, timezone
@@ -656,7 +656,7 @@ class UnsupportedTimeZoneDatabaseTests(TestCase):
@override_settings(TIME_ZONE='Africa/Nairobi')
-class SerializationTests(TestCase):
+class SerializationTests(SimpleTestCase):
# Backend-specific notes:
# - JSON supports only milliseconds, microseconds will be truncated.