Skip to content

Commit

Permalink
update to use non deprecated jbehave api (via #395)
Browse files Browse the repository at this point in the history
  • Loading branch information
valfirst authored and baev committed Dec 9, 2019
1 parent 433e1b1 commit fb9ceea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public void beforeExamples(final List<String> steps, final ExamplesTable table)
}

@Override
public void example(final Map<String, String> tableRow) {
public void example(final Map<String, String> tableRow, final int exampleIndex) {
if (isGivenStory()) {
return;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public void beforeStep(final String step) {
}

@Override
public void example(final Map<String, String> tableRow) {
public void example(final Map<String, String> tableRow, final int exampleIndex) {
log("example", tableRow);
}

Expand Down

0 comments on commit fb9ceea

Please sign in to comment.