Fix off-by-one error with lines from request.node.warn
The line numbers in `node.location` seem to be zero-based?!
This commit is contained in:
@@ -267,7 +267,7 @@ class Node(object):
|
||||
if fslocation is None:
|
||||
fslocation = getattr(self, "fspath", None)
|
||||
else:
|
||||
fslocation = "%s:%s" % fslocation[:2]
|
||||
fslocation = "%s:%s" % (fslocation[0], fslocation[1] + 1)
|
||||
|
||||
self.ihook.pytest_logwarning.call_historic(kwargs=dict(
|
||||
code=code, message=message,
|
||||
|
||||
Reference in New Issue
Block a user