From: Ezio Melotti Date: Fri, 1 Mar 2013 18:56:13 +0000 (+0200) Subject: #17315: unlink a file that test_posixpath was leaving around. X-Git-Tag: v2.7.4rc1~64^2~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c86e866b98b08e257be8abe16dc9c45052dba1f0;p=thirdparty%2FPython%2Fcpython.git #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 d9867a670a35..f74dc1489938 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.