Issue #11022 and #15287: correctly remove the TESTFN file in test_builtin.

This commit is contained in:
Florent Xicluna 2012-07-08 12:08:45 +02:00
parent bc07a5c913
commit 3f4ce635ee
1 changed files with 2 additions and 1 deletions

View File

@ -960,7 +960,7 @@ class BuiltinTest(unittest.TestCase):
self.assertEqual(fp.read(1000), 'YYY'*100)
finally:
fp.close()
unlink(TESTFN)
unlink(TESTFN)
def test_open_default_encoding(self):
old_environ = dict(os.environ)
@ -979,6 +979,7 @@ class BuiltinTest(unittest.TestCase):
self.assertEqual(fp.encoding, current_locale_encoding)
finally:
fp.close()
unlink(TESTFN)
finally:
os.environ.clear()
os.environ.update(old_environ)