1 new changeset in pytest:

http://bitbucket.org/hpk42/pytest/changeset/e859678c2700/
changeset:   e859678c2700
branches:    
user:        RonnyPfannschmidt
date:        2011-05-28 17:36:38
summary:     hopefully final win32 fix for the junitxml path expansion
affected #:  1 file (18 bytes)

--- a/testing/test_junitxml.py  Sat May 28 16:52:05 2011 +0200
+++ b/testing/test_junitxml.py  Sat May 28 17:36:38 2011 +0200
@@ -369,7 +369,7 @@
 
     home_tilde = os.path.expanduser('~/test.xml')
     # this is here for when $HOME is not set correct
-    home_var = os.path.expandvars('$HOME/test.xml')
+    home_var = os.path.normpath(os.path.expandvars('$HOME/test.xml'))
 
     xml_tilde = LogXML('~/test.xml', None)
     assert xml_tilde.logfile == home_tilde

Repository URL: https://bitbucket.org/hpk42/pytest/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
_______________________________________________
py-svn mailing list
py-svn@codespeak.net
http://codespeak.net/mailman/listinfo/py-svn

Reply via email to