diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-04-26 20:51:07 +0100 |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-04-26 20:51:07 +0100 |
commit | d972d8fea25fd738fb313d5dabfd0a1aa998356f (patch) | |
tree | 2e2388ebbd506489224cb23188d449f266c7632c | |
parent | 37eb3387a4f24eb25ed977b0c4e25f22886d49f6 (diff) | |
download | cpython-git-d972d8fea25fd738fb313d5dabfd0a1aa998356f.tar.gz |
Disabled test failing on buildbots.
-rw-r--r-- | Lib/test/test_logging.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index a93338b812..306eea70c9 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -2279,7 +2279,7 @@ class FormatterTest(unittest.TestCase): def test_invalid_style(self): self.assertRaises(ValueError, logging.Formatter, None, None, 'x') - def test_time(self): + def disabled_test_time(self): r = self.get_record() dt = datetime.datetime(1993,4,21,8,3,0,0,utc) r.created = time.mktime(dt.utctimetuple()) |