From 6ed8638559921a535c390e953e696109a20bc0f6 Mon Sep 17 00:00:00 2001 From: Pat Hickey Date: Fri, 29 Jan 2021 18:01:48 -0800 Subject: [PATCH] fix test runtime --- crates/test-programs/tests/wasm_tests/runtime.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/test-programs/tests/wasm_tests/runtime.rs b/crates/test-programs/tests/wasm_tests/runtime.rs index e57e14006c..bb86c59dd0 100644 --- a/crates/test-programs/tests/wasm_tests/runtime.rs +++ b/crates/test-programs/tests/wasm_tests/runtime.rs @@ -42,7 +42,7 @@ pub fn instantiate(data: &[u8], bin_name: &str, workspace: Option<&Path>) -> any builder = builder.env("ERRNO_MODE_UNIX", "1")?; } - let snapshot1 = wasi_wasmtime::Wasi::new(&store, builder.build()?); + let snapshot1 = wasmtime_wasi::Wasi::new(&store, builder.build()?); let mut linker = Linker::new(&store);