Skip to content

Commit

Permalink
Suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephan202 authored and rickie committed Jul 20, 2024
1 parent b2bce8a commit 8112de2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ ImmutableSet<Flux<?>> testFluxEmpty() {
}

ImmutableSet<Flux<Integer>> testFluxJust() {
return ImmutableSet.of(Flux.range(0, 1), Mono.just(1).repeat().take(1));
return ImmutableSet.of(Flux.range(0, 1), Mono.just(2).repeat().take(1));
}

ImmutableSet<Mono<?>> testMonoIdentity() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ ImmutableSet<Flux<?>> testFluxEmpty() {
}

ImmutableSet<Flux<Integer>> testFluxJust() {
return ImmutableSet.of(Flux.just(0), Flux.just(1));
return ImmutableSet.of(Flux.just(0), Flux.just(2));
}

ImmutableSet<Mono<?>> testMonoIdentity() {
Expand Down

0 comments on commit 8112de2

Please sign in to comment.