summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-03-01 18:56:13 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2013-03-01 18:56:13 (GMT)
commitc86e866b98b08e257be8abe16dc9c45052dba1f0 (patch)
treef66a577ab963a3e466fd75af26f91cf98ed7a52b /Lib
parentdce969d2b05238755771bd9c65d86df182ab8390 (diff)
downloadcpython-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.py1
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.