##// END OF EJS Templates
Moving os.path.normcase call to pyfile function.
Jörgen Stenarson -
Show More
@@ -54,11 +54,11 b' def test_find_source_lines():'
54 # A couple of utilities to ensure these tests work the same from a source or a
54 # A couple of utilities to ensure these tests work the same from a source or a
55 # binary install
55 # binary install
56 def pyfile(fname):
56 def pyfile(fname):
57 return re.sub('.py[co]$', '.py', fname)
57 return os.path.normcase(re.sub('.py[co]$', '.py', fname))
58
58
59
59
60 def match_pyfiles(f1, f2):
60 def match_pyfiles(f1, f2):
61 nt.assert_equal(os.path.normcase(pyfile(f1)), os.path.normcase(pyfile(f2)))
61 nt.assert_equal(pyfile(f1), 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