Skip to content

Commit

Permalink
Suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
rickie committed Jul 20, 2024
1 parent 0bde0ff commit b2bce8a
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 @@ -183,7 +183,7 @@ ImmutableSet<Flux<?>> testFluxEmpty() {
Flux.range(0, 0));
}

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ ImmutableSet<Flux<?>> testFluxEmpty() {
Flux.empty());
}

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

Expand Down

0 comments on commit b2bce8a

Please sign in to comment.