mirror of
https://github.com/python/cpython.git
synced 2025-08-01 15:43:13 +00:00
Correctly call the base class tearDown();
otherwise running test_logging twice produce the errors we see on all buildbots
This commit is contained in:
parent
504a48f90a
commit
2aece57d7f
1 changed files with 1 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue