diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-03-29 01:42:31 +0000 |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-03-29 01:42:31 +0000 |
commit | 2aece57d7f7c4233c801d10f500a3f8a2ef483f7 (patch) | |
tree | 48fcdd264d07a1f56e8c0e57dda0dfe375cbd409 /Lib/test/test_logging.py | |
parent | 504a48f90ab957c1ebe8fc2c4f173f410f707f9e (diff) | |
download | cpython-git-2aece57d7f7c4233c801d10f500a3f8a2ef483f7.tar.gz |
Correctly call the base class tearDown();
otherwise running test_logging twice produce the errors we see on all buildbots
Diffstat (limited to 'Lib/test/test_logging.py')
-rw-r--r-- | Lib/test/test_logging.py | 1 |
1 files changed, 1 insertions, 0 deletions
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 |