Skip to content

Commit

Permalink
ci: Fix expected panic message
Browse files Browse the repository at this point in the history
  • Loading branch information
MazterQyou committed Dec 8, 2023
1 parent 3b07e35 commit 0220bc1
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions arrow/src/array/array_binary.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1343,11 +1343,7 @@ mod tests {
}

#[test]
#[should_panic(
expected = "assertion failed: `(left == right)`\n left: `UInt32`,\n \
right: `UInt8`: BinaryArray can only be created from List<u8> arrays, \
mismatched data types."
)]
#[should_panic(expected = "BinaryArray can only be created from List<u8> arrays, mismatched data types.")]
fn test_binary_array_from_incorrect_list_array() {
let values: [u32; 12] = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11];
let values_data = ArrayData::builder(DataType::UInt32)
Expand Down

0 comments on commit 0220bc1

Please sign in to comment.