Skip to content

Commit 7f8669e

Browse files
increase timeout duration
1 parent 4009d6d commit 7f8669e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/timeout.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ fn timeout_future_many() {
1212
task::block_on(async {
1313
let futures = (0..100)
1414
.map(|i| {
15-
timeout(Duration::from_millis(i * 10), async move {
15+
timeout(Duration::from_millis(i * 20), async move {
1616
task::sleep(Duration::from_millis(i)).await;
1717
Ok::<(), async_std::future::TimeoutError>(())
1818
})

0 commit comments

Comments
 (0)