From 608df9eaff076637b17b3a861c32c0b0033afbb8 Mon Sep 17 00:00:00 2001 From: Oussama Saoudi Date: Fri, 27 Sep 2024 13:18:13 -0700 Subject: [PATCH] remove itertools dependency --- kernel/tests/golden_tables.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kernel/tests/golden_tables.rs b/kernel/tests/golden_tables.rs index aa18e9570..3952f2329 100644 --- a/kernel/tests/golden_tables.rs +++ b/kernel/tests/golden_tables.rs @@ -7,7 +7,6 @@ use arrow::{compute::filter_record_batch, record_batch::RecordBatch}; use arrow_ord::sort::{lexsort_to_indices, SortColumn}; use arrow_schema::Schema; use arrow_select::{concat::concat_batches, take::take}; -use itertools::Itertools; use paste::paste; use std::path::{Path, PathBuf}; use std::sync::Arc; @@ -174,7 +173,7 @@ async fn latest_snapshot_test( Ok(record_batch) } }) - .try_collect()?; + .collect::>>()?; let expected = read_expected(&expected_path.expect("expect an expected dir")).await?;