Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
aeyakovenko authored and garious committed May 23, 2018
1 parent 8049323 commit 87e025f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion src/thin_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,12 @@ mod tests {

let spy_ref = Arc::new(RwLock::new(spy_crdt));
let spy_window = default_window();
let t_spy_listen = Crdt::listen(spy_ref.clone(), spy_window, spy.sockets.gossip, exit.clone());
let t_spy_listen = Crdt::listen(
spy_ref.clone(),
spy_window,
spy.sockets.gossip,
exit.clone(),
);
let t_spy_gossip = Crdt::gossip(spy_ref.clone(), exit.clone());
//wait for the network to converge
let mut converged = false;
Expand Down
2 changes: 1 addition & 1 deletion src/tvu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ pub mod tests {
event,
respond,
broadcast,
}
},
}
}
}
Expand Down

0 comments on commit 87e025f

Please sign in to comment.