hopefully final win32 fix for the junitxml path expansion

This commit is contained in:
Ronny Pfannschmidt 2011-05-28 17:36:38 +02:00
parent 70dc7a976d
commit 4c885cf0d2
1 changed files with 1 additions and 1 deletions

View File

@ -369,7 +369,7 @@ def test_logxml_path_expansion():
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