Skip to content

Commit 589b784

Browse files
bors[bot]Ten0
andauthored
Merge #458
458: Specialization test framework + tests (2) typo r=phimuemue a=phimuemue Typo. bors r+ Co-authored-by: Thomas BESSOU <[email protected]>
2 parents 7565519 + 235689f commit 589b784

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/specializations.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ fn merge_join_by_test(i1: Vec<usize>, i2: Vec<usize>, known_expected_size: Optio
116116
eob.left().unwrap_or(0)
117117
}
118118
fn eob_right_z(eob: EitherOrBoth<usize, usize>) -> usize {
119-
eob.left().unwrap_or(0)
119+
eob.right().unwrap_or(0)
120120
}
121121
fn eob_both_z(eob: EitherOrBoth<usize, usize>) -> usize {
122122
let (a, b) = eob.both().unwrap_or((0, 0));

0 commit comments

Comments
 (0)