Skip to content

Commit 87ae2fa

Browse files
committed
chore: fix continuation indent
1 parent 7bb2d0f commit 87ae2fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wiremock-spring-boot/src/main/java/org/wiremock/spring/internal/WireMockSpringJunitExtension.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ private void configureWireMockForDefaultInstance(final ExtensionContext extensio
100100
final String host = "localhost";
101101
if (isHttps) {
102102
WireMock.configureFor(
103-
WireMock.create().https().host(host).port(port).build());
103+
WireMock.create().https().host(host).port(port).build());
104104
} else {
105105
WireMock.configureFor(WireMock.create().http().host(host).port(port).build());
106106
}

0 commit comments

Comments
 (0)