Commit 53936474 authored by Victor Stinner's avatar Victor Stinner

Issue #24836: Skip FormatDateTests of test_email.test_utils on Mac OS X Snow

Leopard because this OS uses out of date (pre 2011k) timezone files.
parent 511491ad
......@@ -136,6 +136,9 @@ class LocaltimeTests(unittest.TestCase):
t1 = utils.localtime(t0)
self.assertEqual(t1.tzname(), 'EET')
# Issue #24836: The timezone files are out of date (pre 2011k)
# on Mac OS X Snow Leopard.
@test.support.requires_mac_ver(10, 7)
class FormatDateTests(unittest.TestCase):
@test.support.run_with_tz('Europe/Minsk')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment