Skip to content

Commit 1036818

Browse files
jorbaumZPascal
authored andcommitted
STDERR logs should not let test fail
1 parent 8ac2502 commit 1036818

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integration-test/src/test/java/org/cloudfoundry/operations/ApplicationsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2205,8 +2205,8 @@ private static Mono<String> getAppGuidFromAppName(
22052205
}
22062206

22072207
private static Log checkOneLogEntry(Log log) {
2208-
assertThat(log.getType()).isEqualTo(LogType.OUT);
22092208
OperationsLogging.log("one log entry: " + log.getType() + " " + log.getPayloadAsText());
2209+
assertThat(log.getType()).isIn(LogType.OUT, LogType.ERR);
22102210
return log;
22112211
}
22122212
}

0 commit comments

Comments
 (0)