Skip to content

Commit f9cf136

Browse files
committed
Fix formatting
1 parent dd9fd6b commit f9cf136

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/probing_tests.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,9 @@ async fn probe_budget_increments_and_decrements() {
298298
// Give gossip time to propagate to A.
299299
tokio::time::sleep(Duration::from_secs(3)).await;
300300

301-
let went_up = wait_until(Duration::from_secs(10), || node_a.prober().map_or(0, |p| p.locked_msat()) > 0) .await;
301+
let went_up =
302+
wait_until(Duration::from_secs(10), || node_a.prober().map_or(0, |p| p.locked_msat()) > 0)
303+
.await;
302304
assert!(went_up, "locked_msat never increased — no probe was dispatched");
303305
println!("First probe dispatched; locked_msat = {}", node_a.prober().unwrap().locked_msat());
304306

0 commit comments

Comments
 (0)