commit | 136726c59f3c13e23c18376d1fd4dcae17e1e50a | [log] [tgz] |
---|---|---|
author | Ezio Melotti <ezio.melotti@gmail.com> | Fri Mar 01 20:59:17 2013 +0200 |
committer | Ezio Melotti <ezio.melotti@gmail.com> | Fri Mar 01 20:59:17 2013 +0200 |
tree | 238da50336f703277985626626dc66db6b51bc06 | |
parent | c6641dbf585397c3387b22036c29f3d451f76063 [diff] |
#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 5d0f5b7..262e09d 100644 --- a/Lib/test/test_posixpath.py +++ b/Lib/test/test_posixpath.py
@@ -421,6 +421,7 @@ support.unlink(ABSTFN+"2") support.unlink(ABSTFN+"y") support.unlink(ABSTFN+"c") + support.unlink(ABSTFN+"a") @unittest.skipUnless(hasattr(os, "symlink"), "Missing symlink implementation")