Skip to content

Commit

Permalink
Ensure printed log of steps handles nbsp; properly
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Jul 27, 2016
1 parent f9cb9af commit 3a378b7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ private static class LoggableStep implements CoreStep {
public LoggableStep(CoreStep toWrap, String command, String locator, String value) {
this.actualStep = toWrap;
this.command = command;
this.locator = locator;
this.value = value;
this.locator = locator.replace('\u00A0',' ');
this.value = value.replace('\u00A0',' ');
}

@Override
Expand Down

0 comments on commit 3a378b7

Please sign in to comment.