summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-03-01 20:56:13 +0200
committerEzio Melotti <ezio.melotti@gmail.com>2013-03-01 20:56:13 +0200
commitc86e866b98b08e257be8abe16dc9c45052dba1f0 (patch)
treef66a577ab963a3e466fd75af26f91cf98ed7a52b
parentdce969d2b05238755771bd9c65d86df182ab8390 (diff)
downloadcpython-git-c86e866b98b08e257be8abe16dc9c45052dba1f0.tar.gz
#17315: unlink a file that test_posixpath was leaving around.
-rw-r--r--Lib/test/test_posixpath.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_posixpath.py b/Lib/test/test_posixpath.py
index d9867a670a..f74dc14899 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.