This commit is contained in:
Stephan Schroevers
2025-02-23 15:14:32 +01:00
parent 8909323e37
commit 001243f31a

View File

@@ -380,7 +380,7 @@ final class ReactorRulesTest implements RefasterRuleCollectionTestCase {
return ImmutableSet.of(
Flux.just("foo").ignoreElements().thenMany(Flux.just("bar")),
Flux.<String>empty().concatWith(Mono.just("baz")),
Flux.<String>empty().switchIfEmpty(Flux.just( "qux", "quux")));
Flux.<String>empty().switchIfEmpty(Flux.just("qux", "quux")));
}
ImmutableSet<Mono<?>> testMonoThenMono() {