Refs #24652 -- Used SimpleTestCase where appropriate.

This commit is contained in:
Simon Charette 2015-04-17 17:38:20 -04:00
parent e2b77acedd
commit be67400b47
93 changed files with 362 additions and 340 deletions

View file

@ -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()