try upping 20ms to 50ms timeouts...

This commit is contained in:
Pat Hickey
2021-05-11 17:12:48 -07:00
parent e36fff894a
commit c81dbe498f
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ use wasi_common::{
};
use wasi_tokio::{clocks_ctx, sched::poll_oneoff, Dir};
const TIMEOUT: Duration = Duration::from_millis(20); // Required for slow execution in CI
const TIMEOUT: Duration = Duration::from_millis(50); // Required for slow execution in CI
#[tokio::test(flavor = "multi_thread")]
async fn empty_file_readable() -> Result<(), Error> {