summaryrefslogtreecommitdiff
path: root/tests/utils_tests/test_dateformat.py
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2015-04-17 17:38:20 -0400
committerSimon Charette <charette.s@gmail.com>2015-05-20 13:46:13 -0400
commitbe67400b477c1b0e7e81766f41bbceed0de74bdc (patch)
treefd8e6d087082754df9159a5549bfa80e2a8c57d9 /tests/utils_tests/test_dateformat.py
parente2b77aceddbda9071fcfc38f90fb50d091d0b5fc (diff)
Refs #24652 -- Used SimpleTestCase where appropriate.
Diffstat (limited to 'tests/utils_tests/test_dateformat.py')
-rw-r--r--tests/utils_tests/test_dateformat.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/utils_tests/test_dateformat.py b/tests/utils_tests/test_dateformat.py
index 1edf01422d..faf4b6605b 100644
--- a/tests/utils_tests/test_dateformat.py
+++ b/tests/utils_tests/test_dateformat.py
@@ -2,7 +2,7 @@ from __future__ import unicode_literals
from datetime import date, datetime
-from django.test import TestCase, override_settings
+from django.test import SimpleTestCase, override_settings
from django.test.utils import TZ_SUPPORT, requires_tz_support
from django.utils import dateformat, translation
from django.utils.dateformat import format
@@ -12,7 +12,7 @@ from django.utils.timezone import (
@override_settings(TIME_ZONE='Europe/Copenhagen')
-class DateFormatTests(TestCase):
+class DateFormatTests(SimpleTestCase):
def setUp(self):
self._orig_lang = translation.get_language()