lib/cucumber/ast/step.rb in casecumber-1.0.2.1 vs lib/cucumber/ast/step.rb in casecumber-1.2.1.cb2
- old
+ new
@@ -48,10 +48,10 @@
# Otherwise it's always StepInvocation that gets visited instead.
visit_step_result(visitor, first_match(visitor), @multiline_arg, :skipped, nil, nil)
end
def visit_step_result(visitor, step_match, multiline_arg, status, exception, background)
- visitor.visit_step_result(@keyword, step_match, @multiline_arg, status, exception, source_indent, background)
+ visitor.visit_step_result(@keyword, step_match, @multiline_arg, status, exception, source_indent, background, file_colon_line)
end
def first_match(visitor)
# @feature_element is always a ScenarioOutline in this case
@feature_element.each_example_row do |cells|