diff options
author | Mark Dickinson <mdickinson@enthought.com> | 2012-10-07 14:41:38 (GMT) |
---|---|---|
committer | Mark Dickinson <mdickinson@enthought.com> | 2012-10-07 14:41:38 (GMT) |
commit | 313dc9b8126186097f74b91d8333dab450b9786e (patch) | |
tree | df9aa11961d2c039ff0a223da8107b2d3cea718f | |
parent | fefd3ac04c6794c0ed81b410486d28d12dc8e6cf (diff) | |
download | cpython-313dc9b8126186097f74b91d8333dab450b9786e.zip cpython-313dc9b8126186097f74b91d8333dab450b9786e.tar.gz cpython-313dc9b8126186097f74b91d8333dab450b9786e.tar.bz2 |
Clean up a test turd.
-rw-r--r-- | Lib/test/test_subprocess.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py index 20b1ade..5e74f4a 100644 --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -526,6 +526,7 @@ class ProcessTestCase(BaseTestCase): finally: for h in handles: os.close(h) + test_support.unlink(test_support.TESTFN) def test_list2cmdline(self): self.assertEqual(subprocess.list2cmdline(['a b c', 'd', 'e']), |