Skip to content

Commit

Permalink
Suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
rickie committed Jul 18, 2024
1 parent a067fe7 commit 99b7a7e
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 @@ -182,7 +182,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 @@ -186,7 +186,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 99b7a7e

Please sign in to comment.