diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-03-29 01:42:31 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-03-29 01:42:31 (GMT) |
commit | 2aece57d7f7c4233c801d10f500a3f8a2ef483f7 (patch) | |
tree | 48fcdd264d07a1f56e8c0e57dda0dfe375cbd409 /Lib | |
parent | 504a48f90ab957c1ebe8fc2c4f173f410f707f9e (diff) | |
download | cpython-2aece57d7f7c4233c801d10f500a3f8a2ef483f7.zip cpython-2aece57d7f7c4233c801d10f500a3f8a2ef483f7.tar.gz cpython-2aece57d7f7c4233c801d10f500a3f8a2ef483f7.tar.bz2 |
Correctly call the base class tearDown();
otherwise running test_logging twice produce the errors we see on all buildbots
Diffstat (limited to 'Lib')
-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 1fac498..b937411 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 |