Skip to content

Commit

Permalink
Add type annotation to fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrobbel committed Sep 26, 2024
1 parent 8428653 commit 7896455
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arrow-select/src/dictionary.rs
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ mod tests {
assert_eq!(merged.values.as_ref(), &expected);
assert_eq!(merged.key_mappings.len(), 2);
assert_eq!(&merged.key_mappings[0], &[0, 0, 0, 1, 0]);
assert_eq!(&merged.key_mappings[1], &[]);
assert_eq!(&merged.key_mappings[1], &[] as &[i32; 0]);
}

#[test]
Expand Down

0 comments on commit 7896455

Please sign in to comment.