hopefully final win32 fix for the junitxml path expansion
This commit is contained in:
parent
70dc7a976d
commit
4c885cf0d2
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue