From c86e866b98b08e257be8abe16dc9c45052dba1f0 Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Fri, 1 Mar 2013 20:56:13 +0200 Subject: [PATCH] #17315: unlink a file that test_posixpath was leaving around. --- Lib/test/test_posixpath.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_posixpath.py b/Lib/test/test_posixpath.py index d9867a670a3..f74dc148993 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.