From: Neal Norwitz Date: Tue, 20 Mar 2007 06:16:26 +0000 (+0000) Subject: Try to make this test more resistant to dropping from previous runs (ie, files that... X-Git-Tag: v2.6a1~1964 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b0a7d4ec68f89ef5fa9cf67b04b36a805711dfcc;p=thirdparty%2FPython%2Fcpython.git Try to make this test more resistant to dropping from previous runs (ie, files that may exist but cause the test to fail). Should be backported (assuming it works :-) --- diff --git a/Lib/test/test_mailbox.py b/Lib/test/test_mailbox.py index 8edb9ebd97ab..fe186fa4ef32 100644 --- a/Lib/test/test_mailbox.py +++ b/Lib/test/test_mailbox.py @@ -54,6 +54,7 @@ class TestMailbox(TestBase): def setUp(self): self._path = test_support.TESTFN + self._delete_recursively(self._path) self._box = self._factory(self._path) def tearDown(self):