summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_posixpath.py
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-03-01 18:59:17 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2013-03-01 18:59:17 (GMT)
commit136726c59f3c13e23c18376d1fd4dcae17e1e50a (patch)
tree238da50336f703277985626626dc66db6b51bc06 /Lib/test/test_posixpath.py
parentc6641dbf585397c3387b22036c29f3d451f76063 (diff)
downloadcpython-136726c59f3c13e23c18376d1fd4dcae17e1e50a.zip
cpython-136726c59f3c13e23c18376d1fd4dcae17e1e50a.tar.gz
cpython-136726c59f3c13e23c18376d1fd4dcae17e1e50a.tar.bz2
#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 5d0f5b7..262e09d 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")