commit | c86e866b98b08e257be8abe16dc9c45052dba1f0 | [log] [tgz] |
---|---|---|
author | Ezio Melotti <ezio.melotti@gmail.com> | Fri Mar 01 20:56:13 2013 +0200 |
committer | Ezio Melotti <ezio.melotti@gmail.com> | Fri Mar 01 20:56:13 2013 +0200 |
tree | f66a577ab963a3e466fd75af26f91cf98ed7a52b | |
parent | dce969d2b05238755771bd9c65d86df182ab8390 [diff] |
#17315: unlink a file that test_posixpath was leaving around.
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 @@ 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.