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 16f86a5 commit d58453aCopy full SHA for d58453a
src/runtime/reactor.rs
@@ -312,9 +312,10 @@ mod test {
312
duration > SHORT_DURATION,
313
"{duration} greater than short duration shows awaited for `soon` properly"
314
);
315
+ // Upper bound is high enough that even the very poor windows CI machines meet it
316
assert!(
- duration < (2 * SHORT_DURATION),
317
- "{duration} less than double short duration {SHORT_DURATION} shows did not await for `later`"
+ duration < (5 * SHORT_DURATION),
318
+ "{duration} less than a reasonable multiple of short duration {SHORT_DURATION} shows did not await for `later`"
319
320
})
321
}
0 commit comments