Skip to content

Commit 33a1d0c

Browse files
committed
apply spotless
1 parent 10b8c0d commit 33a1d0c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

cloudfoundry-client-reactor/src/test/java/org/cloudfoundry/reactor/logcache/v1/ReactorLogCacheClientTest.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,10 @@
5151
import reactor.test.StepVerifier;
5252

5353
class ReactorLogCacheClientTest extends AbstractLogCacheApiTest {
54-
private static final String API_ROOT = "http://api.my.rapid.server.com"; // the ".rAPId." part also contains the string "api".
55-
private static final String LOGCACHE = "http://log-cache.my.rapid.server.com"; // only the "api" at the start of
54+
private static final String API_ROOT =
55+
"http://api.my.rapid.server.com"; // the ".rAPId." part also contains the string "api".
56+
private static final String LOGCACHE =
57+
"http://log-cache.my.rapid.server.com"; // only the "api" at the start of
5658
// the url should be replaced.
5759

5860
private final ReactorLogCacheEndpoints logCacheEndpoints =
@@ -110,9 +112,7 @@ void getRootFromEndpoint() {
110112
Mono<String> logCacheRoot = examinee.getRoot();
111113
String rootString = logCacheRoot.block(Duration.ofSeconds(5));
112114
assertThat(rootString)
113-
.isEqualTo(
114-
"http://cache-for-logging.run.pivotal.io:"
115-
+ webServerUri.getPort());
115+
.isEqualTo("http://cache-for-logging.run.pivotal.io:" + webServerUri.getPort());
116116
}
117117

118118
@Test

0 commit comments

Comments
 (0)