[Python-checkins] cpython (2.7): #17315: unlink a file that test_posixpath was leaving around.

ezio.melotti python-checkins at python.org
Fri Mar 1 20:01:11 CET 2013


http://hg.python.org/cpython/rev/ed3ca7298055
changeset:   82441:ed3ca7298055
branch:      2.7
parent:      82430:6ae4938256c6
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Fri Mar 01 20:56:13 2013 +0200
summary:
  #17315: unlink a file that test_posixpath was leaving around.

files:
  Lib/test/test_posixpath.py |  1 +
  1 files changed, 1 insertions(+), 0 deletions(-)


diff --git a/Lib/test/test_posixpath.py b/Lib/test/test_posixpath.py
--- a/Lib/test/test_posixpath.py
+++ b/Lib/test/test_posixpath.py
@@ -284,6 +284,7 @@
                 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.

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list