Skip to content

Commit

Permalink
Suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
rickie committed Apr 7, 2023
1 parent 254ef26 commit 7e4550e
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 @@ -378,7 +378,7 @@ Flux<Integer> testFluxFilterSortWithComparator() {
}

Mono<ImmutableSet<Integer>> testFluxCollectToImmutableSet() {
return Flux.just(1, 4, 3, 2).collect(toImmutableList()).map(ImmutableSet::copyOf);
return Flux.just(1, 2).collect(toImmutableList()).map(ImmutableSet::copyOf);
}

ImmutableSet<Context> testContextEmpty() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ Flux<Integer> testFluxFilterSortWithComparator() {
}

Mono<ImmutableSet<Integer>> testFluxCollectToImmutableSet() {
return Flux.just(1, 4, 3, 2).collect(toImmutableSet());
return Flux.just(1, 2).collect(toImmutableSet());
}

ImmutableSet<Context> testContextEmpty() {
Expand Down

0 comments on commit 7e4550e

Please sign in to comment.