Correctly call the base class tearDown();

otherwise running test_logging twice produce the errors we see on all buildbots
This commit is contained in:
Amaury Forgeot d'Arc 2008-03-29 01:42:31 +00:00
parent 504a48f90a
commit 2aece57d7f

View file

@ -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