Skip to content

Commit b647af9

Browse files
ramfox“ramfox”
andauthored
test(iroh-relay): add 300ms timeout to the test_qad_client_closes_unresponsive_fast test (#3332)
## Description The linux runner can sometimes be very slow. This test is currently flaky, but only in that it takes a few more milliseconds to complete. Added some time to the duration to remove the flaky-ness. Co-authored-by: “ramfox” <“kasey@n0.computer”>
1 parent 75eae87 commit b647af9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iroh-relay/src/quic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ mod tests {
432432

433433
println!("Closed in {time:?}");
434434
assert!(Duration::from_millis(900) < time);
435-
assert!(time < Duration::from_millis(1500)); // give it some lee-way. Apparently github actions ubuntu runners can be slow?
435+
assert!(time < Duration::from_millis(1800)); // give it some lee-way. Apparently github actions ubuntu runners can be slow?
436436

437437
Ok(())
438438
}

0 commit comments

Comments
 (0)