Skip to content

Commit d58453a

Browse files
committed
fix windows CI
1 parent 16f86a5 commit d58453a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/runtime/reactor.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -312,9 +312,10 @@ mod test {
312312
duration > SHORT_DURATION,
313313
"{duration} greater than short duration shows awaited for `soon` properly"
314314
);
315+
// Upper bound is high enough that even the very poor windows CI machines meet it
315316
assert!(
316-
duration < (2 * SHORT_DURATION),
317-
"{duration} less than double short duration {SHORT_DURATION} shows did not await for `later`"
317+
duration < (5 * SHORT_DURATION),
318+
"{duration} less than a reasonable multiple of short duration {SHORT_DURATION} shows did not await for `later`"
318319
);
319320
})
320321
}

0 commit comments

Comments
 (0)