We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd9fd6b commit f9cf136Copy full SHA for f9cf136
1 file changed
tests/probing_tests.rs
@@ -298,7 +298,9 @@ async fn probe_budget_increments_and_decrements() {
298
// Give gossip time to propagate to A.
299
tokio::time::sleep(Duration::from_secs(3)).await;
300
301
- let went_up = wait_until(Duration::from_secs(10), || node_a.prober().map_or(0, |p| p.locked_msat()) > 0) .await;
+ let went_up =
302
+ wait_until(Duration::from_secs(10), || node_a.prober().map_or(0, |p| p.locked_msat()) > 0)
303
+ .await;
304
assert!(went_up, "locked_msat never increased — no probe was dispatched");
305
println!("First probe dispatched; locked_msat = {}", node_a.prober().unwrap().locked_msat());
306
0 commit comments