Try to make test_import a bit more robust

This commit is contained in:
Antoine Pitrou 2011-03-21 19:05:02 +01:00
parent 60bf7e9e4d
commit 46719af05a

View File

@ -30,6 +30,9 @@ def remove_files(name):
class ImportTests(unittest.TestCase):
def setUp(self):
remove_files(TESTFN)
def tearDown(self):
unload(TESTFN)