diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2012-05-31 11:35:13 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2012-05-31 11:35:13 (GMT) |
commit | c3ea4085f9f75427da48525c01184d3551f11161 (patch) | |
tree | 955e712a5de85b84dda457a9bd239ebb8cbac886 | |
parent | 7148984d61b5677af1ee090e52c1cba08299c9f9 (diff) | |
download | cpython-c3ea4085f9f75427da48525c01184d3551f11161.zip cpython-c3ea4085f9f75427da48525c01184d3551f11161.tar.gz cpython-c3ea4085f9f75427da48525c01184d3551f11161.tar.bz2 |
Changed comment on test skip.
-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 eed5a84..88332b5 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. |