From 2aece57d7f7c4233c801d10f500a3f8a2ef483f7 Mon Sep 17 00:00:00 2001 From: Amaury Forgeot d'Arc Date: Sat, 29 Mar 2008 01:42:31 +0000 Subject: Correctly call the base class tearDown(); otherwise running test_logging twice produce the errors we see on all buildbots --- Lib/test/test_logging.py | 1 + 1 file changed, 1 insertion(+) 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 @@ class MemoryHandlerTest(BaseTest): 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 -- cgit v0.12