Skip to content

Commit 9f546ae

Browse files
committed
fix spaces
1 parent 0a28657 commit 9f546ae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

java/test/org/openqa/selenium/firefox/FirefoxDriverTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ void shouldThrowNumberFormatException() {
280280
int port = PortProber.findFreePort();
281281
GeckoDriverService.Builder builder = new GeckoDriverService.Builder();
282282
builder.usingPort(port);
283-
283+
284284
assertThatExceptionOfType(NumberFormatException.class)
285285
.isThrownBy(builder::build)
286286
.withMessage("Couldn't format the port numbers because the System Language is arabic: \"" + String.format("--port=%d", port) +

java/test/org/openqa/selenium/ie/InternetExplorerDriverTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ void shouldThrowNumberFormatException() {
155155
int port = PortProber.findFreePort();
156156
InternetExplorerDriverService.Builder builder = new InternetExplorerDriverService.Builder();
157157
builder.usingPort(port);
158-
158+
159159
assertThatExceptionOfType(NumberFormatException.class)
160160
.isThrownBy(builder::build)
161161
.withMessage("Couldn't format the port numbers because the System Language is arabic: \"" + String.format("--port=%d", port) +

0 commit comments

Comments
 (0)