From: Vinay Sajip Date: Fri, 5 Feb 2010 15:40:20 +0000 (+0000) Subject: Issue #7857: test_logging: listener tests disabled for now. X-Git-Tag: v2.7a3~14 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=007a618a38d0c4dac9182fed9b22f3caf55dd1ea;p=python Issue #7857: test_logging: listener tests disabled for now. --- diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index 7453672bff..43a4438ab4 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -1594,7 +1594,7 @@ class ConfigDictTest(BaseTest): logging.config.stopListening() t.join() - def test_listen_config_10_ok(self): + def notest_listen_config_10_ok(self): with captured_stdout() as output: self.setup_via_listener(json.dumps(self.config10)) logger = logging.getLogger("compiler.parser") @@ -1613,7 +1613,7 @@ class ConfigDictTest(BaseTest): ('ERROR', '4'), ], stream=output) - def test_listen_config_1_ok(self): + def notest_listen_config_1_ok(self): with captured_stdout() as output: self.setup_via_listener(textwrap.dedent(ConfigFileTest.config1)) logger = logging.getLogger("compiler.parser")