Skip to content

Commit

Permalink
[JUnit] Fix argument name.
Browse files Browse the repository at this point in the history
  • Loading branch information
brasmusson committed May 27, 2017
1 parent 19774fc commit 6bad552
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -131,10 +131,10 @@ private static final class PickleStepId implements Serializable {
private final int pickleLine; private final int pickleLine;
private final int pickleStepLine; private final int pickleStepLine;


PickleStepId(PickleEvent pickleEvent, PickleStep pickleStepLine) { PickleStepId(PickleEvent pickleEvent, PickleStep pickleStep) {
this.uri = pickleEvent.uri; this.uri = pickleEvent.uri;
this.pickleLine = pickleEvent.pickle.getLocations().get(0).getLine(); this.pickleLine = pickleEvent.pickle.getLocations().get(0).getLine();
this.pickleStepLine = pickleStepLine.getLocations().get(0).getLine(); this.pickleStepLine = pickleStep.getLocations().get(0).getLine();
} }


@Override @Override
Expand Down

0 comments on commit 6bad552

Please sign in to comment.