##// END OF EJS Templates
Fix for #1908, use os.path.normcase for safe filename comparisons
Jörgen Stenarson -
Show More
@@ -58,7 +58,7 b' def pyfile(fname):'
58
58
59
59
60 def match_pyfiles(f1, f2):
60 def match_pyfiles(f1, f2):
61 nt.assert_equal(pyfile(f1), pyfile(f2))
61 nt.assert_equal(os.path.normcase(pyfile(f1)), os.path.normcase(pyfile(f2)))
62
62
63
63
64 def test_find_file():
64 def test_find_file():
General Comments 0
You need to be logged in to leave comments. Login now