commit | 2aece57d7f7c4233c801d10f500a3f8a2ef483f7 | [log] [tgz] |
---|---|---|
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | Sat Mar 29 01:42:31 2008 +0000 |
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | Sat Mar 29 01:42:31 2008 +0000 |
tree | 48fcdd264d07a1f56e8c0e57dda0dfe375cbd409 | |
parent | 504a48f90ab957c1ebe8fc2c4f173f410f707f9e [diff] [blame] |
Correctly call the base class tearDown(); otherwise running test_logging twice produce the errors we see on all buildbots
diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index 1fac498..b937411 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py
@@ -450,6 +450,7 @@ def tearDown(self): self.mem_hdlr.close() + BaseTest.tearDown(self) def test_flush(self): # The memory handler flushes to its target handler based on specific