We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d917da4 commit 1abc210Copy full SHA for 1abc210
integration-test/src/test/java/org/cloudfoundry/operations/ApplicationsTest.java
@@ -529,14 +529,14 @@ public void logs() throws IOException {
529
this.cloudFoundryOperations
530
.applications()
531
.logs(
532
- LogsRequest.builder()
+ ApplicationLogsRequest.builder()
533
.name(applicationName)
534
.recent(true)
535
.build()))
536
- .map(LogMessage::getMessageType)
+ .map(ApplicationLog::getLogType)
537
.next()
538
.as(StepVerifier::create)
539
- .expectNext(MessageType.OUT)
+ .expectNext(ApplicationLogType.OUT)
540
.expectComplete()
541
.verify(Duration.ofMinutes(5));
542
}
0 commit comments