Skip to content

Commit 407330d

Browse files
committed
fix integration tests when there are multiple cflinuxfs stacks
1 parent 1b130c3 commit 407330d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integration-test/src/test/java/org/cloudfoundry/IntegrationTestConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ Mono<String> stackName(CloudFoundryClient cloudFoundryClient) {
568568
.map(StackEntity::getName)
569569
.filter(s -> s.matches("^cflinuxfs\\d$"))
570570
.sort(Comparator.reverseOrder())
571-
.single()
571+
.next()
572572
.cache();
573573
}
574574

0 commit comments

Comments
 (0)