Skip to content

Commit

Permalink
apply cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
rexf committed Nov 13, 2024
1 parent 55beded commit f0280bc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions async-nats/src/service/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,9 @@ mod tests {

let group = Group {
prefix: "test".to_string(),
stats: Arc::new(Mutex::new(Endpoints { endpoints: HashMap::new() })),
stats: Arc::new(Mutex::new(Endpoints {
endpoints: HashMap::new(),
})),
client,
shutdown_tx: tokio::sync::broadcast::channel(1).0,
subjects: Arc::new(Mutex::new(vec![])),
Expand All @@ -916,4 +918,3 @@ mod tests {
assert_eq!(new_group.queue_group, "custom_queue");
}
}

0 comments on commit f0280bc

Please sign in to comment.