Skip to content

Commit

Permalink
remove itertools dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
OussamaSaoudi-db committed Sep 27, 2024
1 parent 4c902ac commit 608df9e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions kernel/tests/golden_tables.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -174,7 +173,7 @@ async fn latest_snapshot_test(
Ok(record_batch)
}
})
.try_collect()?;
.collect::<DeltaResult<Vec<RecordBatch>>>()?;

let expected = read_expected(&expected_path.expect("expect an expected dir")).await?;

Expand Down

0 comments on commit 608df9e

Please sign in to comment.