fix test to account for jython python file ending
--HG-- branch : trunk
This commit is contained in:
parent
11bf293972
commit
169d8d1e54
|
@ -375,8 +375,7 @@ def test_getfslineno():
|
|||
fspath, lineno = getfslineno(f)
|
||||
|
||||
fname = __file__
|
||||
if fname.lower().endswith('.pyc'):
|
||||
fname = fname[:-1]
|
||||
fname = fname[:fname.find('.py')] + '.py'
|
||||
|
||||
assert fspath == py.path.local(fname)
|
||||
assert lineno == py.code.getrawcode(f).co_firstlineno-1 # see findsource
|
||||
|
|
Loading…
Reference in New Issue