diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2010-02-08 21:18:15 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2010-02-08 21:18:15 (GMT) |
commit | cfc43e9435e4f7428f6dfb163ab8f3846dd3af28 (patch) | |
tree | 6aa71335fe437e7a26a4876c0ed129c67d01c52d /Lib/test/test_logging.py | |
parent | dde96e6dd6222e37746563930ff4bf3b1321f10e (diff) | |
download | cpython-cfc43e9435e4f7428f6dfb163ab8f3846dd3af28.zip cpython-cfc43e9435e4f7428f6dfb163ab8f3846dd3af28.tar.gz cpython-cfc43e9435e4f7428f6dfb163ab8f3846dd3af28.tar.bz2 |
logging: gingerly re-enabling skipped tests after improving thread sync code in configurator.
Diffstat (limited to 'Lib/test/test_logging.py')
-rw-r--r-- | Lib/test/test_logging.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index 77db96a..dcd75ce 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -1594,7 +1594,6 @@ class ConfigDictTest(BaseTest): logging.config.stopListening() t.join(2.0) - #@unittest.skip("See issue #7857") def test_listen_config_10_ok(self): with captured_stdout() as output: self.setup_via_listener(json.dumps(self.config10)) @@ -1614,7 +1613,6 @@ class ConfigDictTest(BaseTest): ('ERROR', '4'), ], stream=output) - @unittest.skip("See issue #7857") def test_listen_config_1_ok(self): with captured_stdout() as output: self.setup_via_listener(textwrap.dedent(ConfigFileTest.config1)) |