tests: ignore refresh error in wait_peer_zone_visibility

fmt
This commit is contained in:
Luna Yao
2026-04-28 21:23:17 +02:00
parent 30b88bf626
commit b85d5bc515
+3 -3
View File
@@ -343,9 +343,9 @@ async fn wait_peer_zone_visibility(
let deadline = Instant::now() + Duration::from_secs(20); let deadline = Instant::now() + Duration::from_secs(20);
loop { loop {
dns.refresh(target_peer_id, Default::default(), Default::default()) let _ = dns
.await .refresh(target_peer_id, Default::default(), Default::default())
.unwrap(); .await;
let snapshot = dns.snapshot(); let snapshot = dns.snapshot();