From e1ca5d171c6acb0f89e6f4a05150f5d6c5d7850f Mon Sep 17 00:00:00 2001 From: Pat Hickey Date: Fri, 29 Jan 2021 20:58:00 -0800 Subject: [PATCH] fix the second place i made the same dumb typo --- 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 bb86c59dd0..8af9e1bffa 100644 --- a/crates/test-programs/tests/wasm_tests/runtime.rs +++ b/crates/test-programs/tests/wasm_tests/runtime.rs @@ -97,7 +97,7 @@ pub fn instantiate_inherit_stdio( builder = builder.preopened_dir(preopen_dir, ".")?; } - let snapshot1 = wasi_wasmtime::Wasi::new(&store, builder.build()?); + let snapshot1 = wasmtime_wasi::Wasi::new(&store, builder.build()?); let mut linker = Linker::new(&store);