Skip to content

Commit cbdd4c7

Browse files
committed
fix
1 parent a20f24e commit cbdd4c7

File tree

1 file changed

+4
-1
lines changed
  • vortex-array/src/arrays/constant/compute

1 file changed

+4
-1
lines changed

vortex-array/src/arrays/constant/compute/take.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,10 @@ mod tests {
5858
)
5959
.unwrap();
6060
let valid_indices: &[usize] = &[1usize];
61-
assert_eq!(taken.to_primitive().unwrap().as_slice::<i32>(), &[42, 42, 42]);
61+
assert_eq!(
62+
taken.to_primitive().unwrap().as_slice::<i32>(),
63+
&[42, 42, 42]
64+
);
6265
assert_eq!(
6366
taken.validity_mask().unwrap().indices(),
6467
AllOr::Some(valid_indices)

0 commit comments

Comments
 (0)