diff --git a/crates/polars-parquet/tests/it/roundtrip.rs b/crates/polars-parquet/tests/it/roundtrip.rs index 2bdb6ad7b262..e3598ccb762e 100644 --- a/crates/polars-parquet/tests/it/roundtrip.rs +++ b/crates/polars-parquet/tests/it/roundtrip.rs @@ -73,7 +73,7 @@ fn round_trip( #[test] fn roundtrip_binview() -> PolarsResult<()> { - let array = Utf8ViewArray::from([Some("foo"), Some("bar"), None, Some("hamlet")]); + let array = Utf8ViewArray::from_slice([Some("foo"), Some("bar"), None, Some("hamlet")]); round_trip( &array.boxed(),