##// END OF EJS Templates
Fix process test on Windows...
Thomas Kluyver -
Show More
@@ -52,7 +52,7 b' def has_pywin32():'
52 def test_find_cmd_pythonw():
52 def test_find_cmd_pythonw():
53 """Try to find pythonw on Windows."""
53 """Try to find pythonw on Windows."""
54 path = find_cmd('pythonw')
54 path = find_cmd('pythonw')
55 nt.assert_true(path.endswith('pythonw.exe'))
55 assert path.lower().endswith('pythonw.exe'), path
56
56
57
57
58 @dec.onlyif(lambda : sys.platform != 'win32' or has_pywin32(),
58 @dec.onlyif(lambda : sys.platform != 'win32' or has_pywin32(),
General Comments 0
You need to be logged in to leave comments. Login now