Skip to content

Commit 1abc210

Browse files
committed
feat: Adjust the integrationtests
1 parent d917da4 commit 1abc210

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -529,14 +529,14 @@ public void logs() throws IOException {
529529
this.cloudFoundryOperations
530530
.applications()
531531
.logs(
532-
LogsRequest.builder()
532+
ApplicationLogsRequest.builder()
533533
.name(applicationName)
534534
.recent(true)
535535
.build()))
536-
.map(LogMessage::getMessageType)
536+
.map(ApplicationLog::getLogType)
537537
.next()
538538
.as(StepVerifier::create)
539-
.expectNext(MessageType.OUT)
539+
.expectNext(ApplicationLogType.OUT)
540540
.expectComplete()
541541
.verify(Duration.ofMinutes(5));
542542
}

0 commit comments

Comments
 (0)