diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-03-01 18:56:13 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-03-01 18:56:13 (GMT) |
commit | c86e866b98b08e257be8abe16dc9c45052dba1f0 (patch) | |
tree | f66a577ab963a3e466fd75af26f91cf98ed7a52b /Lib | |
parent | dce969d2b05238755771bd9c65d86df182ab8390 (diff) | |
download | cpython-c86e866b98b08e257be8abe16dc9c45052dba1f0.zip cpython-c86e866b98b08e257be8abe16dc9c45052dba1f0.tar.gz cpython-c86e866b98b08e257be8abe16dc9c45052dba1f0.tar.bz2 |
#17315: unlink a file that test_posixpath was leaving around.
Diffstat (limited to 'Lib')
-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 d9867a6..f74dc14 100644 --- a/Lib/test/test_posixpath.py +++ b/Lib/test/test_posixpath.py @@ -284,6 +284,7 @@ class PosixPathTest(unittest.TestCase): test_support.unlink(ABSTFN+"2") test_support.unlink(ABSTFN+"y") test_support.unlink(ABSTFN+"c") + test_support.unlink(ABSTFN+"a") def test_realpath_repeated_indirect_symlinks(self): # Issue #6975. |