summaryrefslogtreecommitdiff
path: root/tests/regressiontests/utils/tests.py
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2010-01-10 17:28:20 +0000
committerAdrian Holovaty <adrian@holovaty.com>2010-01-10 17:28:20 +0000
commita7dc2c06532586f8988d04d8f697c4ebfcabfde8 (patch)
tree85ad5edac6304b1af3a84a5b6edc161e8cae1f2b /tests/regressiontests/utils/tests.py
parentddd6f28cac9839ec1f98a1b591e8f8397cf77ce4 (diff)
Fixed #10979 -- Fixed misleading FixedOffset.__repr__(). Thanks, gsong
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12164 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/utils/tests.py')
-rw-r--r--tests/regressiontests/utils/tests.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/regressiontests/utils/tests.py b/tests/regressiontests/utils/tests.py
index cd93fb9c01..daae84b6d5 100644
--- a/tests/regressiontests/utils/tests.py
+++ b/tests/regressiontests/utils/tests.py
@@ -10,6 +10,7 @@ from django.utils.functional import SimpleLazyObject
import timesince
import datastructures
import itercompat
+import tzinfo
from decorators import DecoratorFromMiddlewareTests
from functional import FunctionalTestCase
@@ -26,6 +27,7 @@ __test__ = {
'timesince': timesince,
'datastructures': datastructures,
'itercompat': itercompat,
+ 'tzinfo': tzinfo,
}
from dateformat import *