From: Amaury Forgeot d'Arc Date: Sat, 29 Mar 2008 01:42:31 +0000 (+0000) Subject: Correctly call the base class tearDown(); X-Git-Tag: v2.6a2~40 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2aece57d7f7c4233c801d10f500a3f8a2ef483f7;p=python 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 1fac498d02..b937411c03 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