This is an automated email from the ASF dual-hosted git repository.
tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/master by this push:
new 31c81c5fd9 Fix nightly tests (#4709)
31c81c5fd9 is described below
commit 31c81c5fd99921e9aaffa5cc930ab1110e67962b
Author: Raphael Taylor-Davies <[email protected]>
AuthorDate: Thu Aug 17 10:53:44 2023 +0100
Fix nightly tests (#4709)
---
arrow-array/src/array/binary_array.rs | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/arrow-array/src/array/binary_array.rs
b/arrow-array/src/array/binary_array.rs
index 67be3768cc..75880bec30 100644
--- a/arrow-array/src/array/binary_array.rs
+++ b/arrow-array/src/array/binary_array.rs
@@ -547,9 +547,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."
+ 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];