Fix CI after merge (#817)

This commit is contained in:
Alex Crichton
2020-01-14 11:41:03 -06:00
committed by Dan Gohman
parent 0cf12b3f93
commit 7f997fe7a6

View File

@@ -16,7 +16,7 @@ fn test_invoke_func_via_table() -> Result<()> {
"#,
)?;
let module = Module::new(&store, &binary).context("> Error compiling module!")?;
let instance = Instance::new(&store, &module, &[]).context("> Error instantiating module!")?;
let instance = Instance::new(&module, &[]).context("> Error instantiating module!")?;
let f = instance
.find_export_by_name("table")