diff options
author | Simon Charette <charette.s@gmail.com> | 2016-06-05 23:47:17 -0400 |
---|---|---|
committer | Simon Charette <charette.s@gmail.com> | 2016-06-06 11:26:21 -0400 |
commit | 271581df606b307d89c141e8b1a50ace763bea81 (patch) | |
tree | 570cfd24416d0c24050c582e3ba1302ab32d05eb /tests/timezones | |
parent | b484f167bed61f4cff215208eddf98a0655239d4 (diff) | |
download | django-271581df606b307d89c141e8b1a50ace763bea81.tar.gz |
Refs #26712 -- Removed workarounds for PostgreSQL queries on TIME_ZONE changes.
Diffstat (limited to 'tests/timezones')
-rw-r--r-- | tests/timezones/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/timezones/tests.py b/tests/timezones/tests.py index dce48f6eae..df9ac424c6 100644 --- a/tests/timezones/tests.py +++ b/tests/timezones/tests.py @@ -840,7 +840,7 @@ class SerializationTests(SimpleTestCase): @override_settings(DATETIME_FORMAT='c', TIME_ZONE='Africa/Nairobi', USE_L10N=False, USE_TZ=True) -class TemplateTests(TestCase): +class TemplateTests(SimpleTestCase): @requires_tz_support def test_localtime_templatetag_and_filters(self): |