Skip to content

Commit 0220bc1

Browse files
committed
ci: Fix expected panic message
1 parent 3b07e35 commit 0220bc1

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

arrow/src/array/array_binary.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1343,11 +1343,7 @@ mod tests {
13431343
}
13441344

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

0 commit comments

Comments
 (0)