Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
sanketkedia committed Dec 4, 2024
1 parent a6bb23b commit c886068
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions rust/worker/src/segment/spann_segment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ mod test {
};

use crate::segment::{
spann_segment::SpannSegmentWriter, LogMaterializer, SegmentFlusher, SegmentWriter,
materialize_logs, spann_segment::SpannSegmentWriter, SegmentFlusher, SegmentWriter,
};

#[tokio::test]
Expand Down Expand Up @@ -370,9 +370,7 @@ mod test {
];
let chunked_log = Chunk::new(data.into());
// Materialize the logs.
let materializer = LogMaterializer::new(None, chunked_log, None);
let materialized_log = materializer
.materialize()
let materialized_log = materialize_logs(&None, &chunked_log, None)
.await
.expect("Error materializing logs");
spann_writer
Expand Down

0 comments on commit c886068

Please sign in to comment.