Skip to content

Commit 235689f

Browse files
Ten0phimuemue
authored andcommitted
Specialization test framework + tests (2) typo
1 parent e3ea516 commit 235689f

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)