summaryrefslogtreecommitdiff
path: root/test/base/test_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/base/test_utils.py')
-rw-r--r--test/base/test_utils.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/base/test_utils.py b/test/base/test_utils.py
index 662baa38a..246199861 100644
--- a/test/base/test_utils.py
+++ b/test/base/test_utils.py
@@ -3185,6 +3185,8 @@ class TimezoneTest(fixtures.TestBase):
),
)
def test_tzname(self, td, expected):
+ if expected == "UTC" and util.py3k and not util.py36:
+ expected += "+00:00"
eq_(timezone(td).tzname(None), expected)
def test_utcoffset(self):