Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
oblique committed Dec 10, 2024
1 parent ff5e660 commit 8694036
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions node/src/daser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ mod tests {
use super::*;
use crate::events::{EventChannel, EventSubscriber};
use crate::executor::sleep;
use crate::node::DEFAULT_SAMPLING_WINDOW;
use crate::node::DEFAULT_SYNCING_WINDOW;
use crate::p2p::shwap::convert_cid;
use crate::p2p::P2pCmd;
use crate::store::InMemoryStore;
Expand Down Expand Up @@ -503,7 +503,7 @@ mod tests {
event_pub: events.publisher(),
p2p: Arc::new(mock),
store: store.clone(),
sampling_window: DEFAULT_SAMPLING_WINDOW,
sampling_window: DEFAULT_SYNCING_WINDOW,
})
.unwrap();

Expand All @@ -530,7 +530,7 @@ mod tests {
event_pub: events.publisher(),
p2p: Arc::new(mock),
store: store.clone(),
sampling_window: DEFAULT_SAMPLING_WINDOW,
sampling_window: DEFAULT_SYNCING_WINDOW,
})
.unwrap();

Expand All @@ -555,7 +555,7 @@ mod tests {
event_pub: events.publisher(),
p2p: Arc::new(mock),
store: store.clone(),
sampling_window: DEFAULT_SAMPLING_WINDOW,
sampling_window: DEFAULT_SYNCING_WINDOW,
})
.unwrap();

Expand Down

0 comments on commit 8694036

Please sign in to comment.