We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 838da43 commit e46143bCopy full SHA for e46143b
iroh/src/magicsock/remote_map/remote_state/path_state.rs
@@ -453,8 +453,10 @@ mod tests {
453
paths.get_mut(&test_ip_addr(3)).unwrap().holepunched = true;
454
455
// mark path 4 as having a recent ping (ping in process)
456
- paths.get_mut(&test_ip_addr(4)).unwrap().ping_sent =
457
- Some((TransactionId::default(), Instant::now() - Duration::from_secs(5)));
+ paths.get_mut(&test_ip_addr(4)).unwrap().ping_sent = Some((
+ TransactionId::default(),
458
+ Instant::now() - Duration::from_secs(5),
459
+ ));
460
461
let pending = VecDeque::new();
462
// mark one path as selected
0 commit comments