diff --git a/rust/src/array.rs b/rust/src/array.rs index 34294a54b8c..3fde1c01f55 100644 --- a/rust/src/array.rs +++ b/rust/src/array.rs @@ -426,7 +426,7 @@ mod tests { fn test_struct() { let a: Rc = Rc::new(PrimitiveArray::from(Buffer::from(vec![1, 2, 3, 4, 5]))); let b: Rc = Rc::new(PrimitiveArray::from(Buffer::from(vec![ - 1.1, 2.2, 3.3, 4.4, 5.5 + 1.1, 2.2, 3.3, 4.4, 5.5, ]))); let s = StructArray::from(vec![a, b]);