diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-03-01 18:59:17 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-03-01 18:59:17 (GMT) |
commit | 136726c59f3c13e23c18376d1fd4dcae17e1e50a (patch) | |
tree | 238da50336f703277985626626dc66db6b51bc06 /Lib/test/test_posixpath.py | |
parent | c6641dbf585397c3387b22036c29f3d451f76063 (diff) | |
download | cpython-136726c59f3c13e23c18376d1fd4dcae17e1e50a.zip cpython-136726c59f3c13e23c18376d1fd4dcae17e1e50a.tar.gz cpython-136726c59f3c13e23c18376d1fd4dcae17e1e50a.tar.bz2 |
#17315: unlink a file that test_posixpath was leaving around.
Diffstat (limited to 'Lib/test/test_posixpath.py')
-rw-r--r-- | Lib/test/test_posixpath.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_posixpath.py b/Lib/test/test_posixpath.py index 5d0f5b7..262e09d 100644 --- a/Lib/test/test_posixpath.py +++ b/Lib/test/test_posixpath.py @@ -421,6 +421,7 @@ class PosixPathTest(unittest.TestCase): support.unlink(ABSTFN+"2") support.unlink(ABSTFN+"y") support.unlink(ABSTFN+"c") + support.unlink(ABSTFN+"a") @unittest.skipUnless(hasattr(os, "symlink"), "Missing symlink implementation") |