Skip to content

Commit

Permalink
Merge #458
Browse files Browse the repository at this point in the history
458: Specialization test framework + tests (2) typo r=phimuemue a=phimuemue

Typo.

bors r+

Co-authored-by: Thomas BESSOU <thomas.bessou@hotmail.fr>
  • Loading branch information
bors[bot] and Ten0 committed Jul 13, 2020
2 parents 7565519 + 235689f commit 589b784
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/specializations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ fn merge_join_by_test(i1: Vec<usize>, i2: Vec<usize>, known_expected_size: Optio
eob.left().unwrap_or(0)
}
fn eob_right_z(eob: EitherOrBoth<usize, usize>) -> usize {
eob.left().unwrap_or(0)
eob.right().unwrap_or(0)
}
fn eob_both_z(eob: EitherOrBoth<usize, usize>) -> usize {
let (a, b) = eob.both().unwrap_or((0, 0));
Expand Down

0 comments on commit 589b784

Please sign in to comment.