From b0a7d4ec68f89ef5fa9cf67b04b36a805711dfcc Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Tue, 20 Mar 2007 06:16:26 +0000 Subject: [PATCH] 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 :-) --- Lib/test/test_mailbox.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_mailbox.py b/Lib/test/test_mailbox.py index 8edb9ebd97..fe186fa4ef 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): -- 2.50.1