We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e78e83 commit 06d11f6Copy full SHA for 06d11f6
1 file changed
integration-test/src/test/java/org/cloudfoundry/operations/ApplicationsTest.java
@@ -2205,7 +2205,7 @@ private static Mono<String> getAppGuidFromAppName(
2205
}
2206
2207
private static Log checkOneLogEntry(Log log) {
2208
- assertThat(log.getType().equals(LogType.OUT));
+ assertThat(log.getType()).isEqualTo(LogType.OUT);
2209
OperationsLogging.log("one log entry: " + log.getType() + " " + log.getPayloadAsText());
2210
return log;
2211
0 commit comments