Skip to content

Commit cb2ec5e

Browse files
committed
fix test compile issues
1 parent 8f53eb7 commit cb2ec5e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

db4-storage/src/segments/edge.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ impl<P: PersistentStrategy<ES = EdgeSegmentView<P>>> EdgeSegmentOps for EdgeSegm
582582
#[cfg(test)]
583583
mod test {
584584
use super::*;
585-
use arrow_array::{BooleanArray, StringArray};
585+
use arrow_array::{Array, BooleanArray, StringArray};
586586
use raphtory_api::core::entities::properties::{prop::PropType, tprop::TPropOps};
587587
use raphtory_core::storage::timeindex::TimeIndexEntry;
588588

raphtory-core/src/storage/lazy_vec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use arrow_array::BooleanArray;
22
use serde::{Deserialize, Serialize};
3-
use std::fmt::Debug;
3+
use std::{fmt::Debug, iter};
44

55
#[derive(thiserror::Error, Debug, PartialEq)]
66
#[error("Cannot set previous value '{previous_value:?}' to '{new_value:?}' in position '{index}'")]

0 commit comments

Comments
 (0)