Try to make test_import a bit more robust

This commit is contained in:
Antoine Pitrou 2011-03-21 19:05:18 +01:00
commit 59cc6847a9

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)