Skip to content

Commit b4b4de6

Browse files
committed
Update FSL take test to fail with assert_arrays_eq! without explicit ToCanonical
Signed-off-by: Robert Kruszewski <github@robertk.io>
1 parent ba827a4 commit b4b4de6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • vortex-array/src/arrays/fixed_size_list/tests

vortex-array/src/arrays/fixed_size_list/tests/take.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,8 @@ fn test_element_index_overflow(
161161
#[case] indices: ArrayRef,
162162
#[case] expected: FixedSizeListArray,
163163
) {
164-
let result = fsl.take(indices).unwrap().to_fixed_size_list();
165-
assert_arrays_eq!(expected, result);
164+
let result = fsl.take(indices).unwrap();
165+
assert_arrays_eq!(result, expected);
166166
}
167167

168168
// Parameterized test for nullable array scenarios that are specific to FSL's implementation.

0 commit comments

Comments
 (0)