#17315: unlink a file that test_posixpath was leaving around.

This commit is contained in:
Ezio Melotti 2013-03-01 20:59:17 +02:00
parent c6641dbf58
commit 136726c59f

View file

@ -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")