From 3a70c0df5030ea8ed232daff53d9dac17dc5d47f Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Fri, 1 Mar 2013 20:59:17 +0200 Subject: #17315: unlink a file that test_posixpath was leaving around. --- Lib/test/test_posixpath.py | 1 + 1 file changed, 1 insertion(+) (limited to 'Lib/test/test_posixpath.py') 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") -- cgit v1.2.1