summaryrefslogtreecommitdiff
path: root/Lib/test/test_posixpath.py
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-03-01 20:59:17 +0200
committerEzio Melotti <ezio.melotti@gmail.com>2013-03-01 20:59:17 +0200
commit3a70c0df5030ea8ed232daff53d9dac17dc5d47f (patch)
tree8ca65344b998faac339c05cdae3f0d528ead3513 /Lib/test/test_posixpath.py
parent2592df89ccfdce51d038a9d7eac1c03938501ce4 (diff)
downloadcpython-3a70c0df5030ea8ed232daff53d9dac17dc5d47f.tar.gz
#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.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_posixpath.py b/Lib/test/test_posixpath.py
index 5d0f5b74e2..262e09dfdb 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")