From c3ea4085f9f75427da48525c01184d3551f11161 Mon Sep 17 00:00:00 2001 From: Vinay Sajip Date: Thu, 31 May 2012 12:35:13 +0100 Subject: [PATCH] Changed comment on test skip. --- Lib/test/test_logging.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index eed5a849029..88332b5a854 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -1877,7 +1877,7 @@ class ChildLoggerTest(BaseTest): class HandlerTest(BaseTest): - @unittest.skipIf(os.name == 'nt', 'Temporarily disabled for Windows') + @unittest.skipIf(os.name == 'nt', 'WatchedFileHandler not appropriate for Windows.') @unittest.skipUnless(threading, 'Threading required for this test.') def test_race(self): # Issue #14632 refers.