Skip to content

Commit 9fe5d91

Browse files
CIRCSTORE-656 fix formatting
1 parent 37dd139 commit 9fe5d91

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/java/org/folio/rest/api/StorageTestSuite.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public class StorageTestSuite {
9999
private static final WireMockServer wireMockServer = new WireMockServer(PROXY_PORT);
100100

101101
private static final KafkaContainer kafkaContainer = new KafkaContainer(DockerImageName.parse("apache/kafka-native:4.2.0"))
102-
.withStartupAttempts(3);
102+
.withStartupAttempts(3);
103103

104104

105105
/**
@@ -123,7 +123,7 @@ public static URL storageUrl(String path, String... parameterKeyValue) throws Ma
123123
.append(i == 0 ? "?" : "&")
124124
.append(URLEncoder.encode(parameterKeyValue[i], StandardCharsets.UTF_8.name()))
125125
.append('=')
126-
.append(URLEncoder.encode(parameterKeyValue[i+1], StandardCharsets.UTF_8.name()));
126+
.append(URLEncoder.encode(parameterKeyValue[i + 1], StandardCharsets.UTF_8.name()));
127127
}
128128
return new URL("http", "localhost", PROXY_PORT, completePath.toString());
129129
} catch (UnsupportedEncodingException e) {

0 commit comments

Comments
 (0)