From 2aece57d7f7c4233c801d10f500a3f8a2ef483f7 Mon Sep 17 00:00:00 2001 From: Amaury Forgeot d'Arc Date: Sat, 29 Mar 2008 01:42:31 +0000 Subject: [PATCH] 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 1fac498d0272..b937411c038c 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 -- 2.47.3