Skip to content

Commit

Permalink
Already used
Browse files Browse the repository at this point in the history
  • Loading branch information
Philippe-Cholet committed Jun 13, 2023
1 parent 988a222 commit dc359e0
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/quick.rs
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,6 @@ quickcheck! {
quickcheck! {
fn merge_join_by_ordering_vs_bool(a: Vec<u8>, b: Vec<u8>) -> bool {
use either::Either;
use itertools::EitherOrBoth;
use itertools::free::merge_join_by;
let mut has_equal = false;
let it_ord = merge_join_by(a.clone(), b.clone(), Ord::cmp).flat_map(|v| match v {
Expand All @@ -848,7 +847,6 @@ quickcheck! {
}
fn merge_join_by_bool_unwrapped_is_merge_by(a: Vec<u8>, b: Vec<u8>) -> bool {
use either::Either;
use itertools::Itertools;
use itertools::free::merge_join_by;
let it = a.clone().into_iter().merge_by(b.clone(), PartialOrd::ge);
let it_join = merge_join_by(a, b, PartialOrd::ge).map(Either::into_inner);
Expand Down

0 comments on commit dc359e0

Please sign in to comment.