Skip to content

Commit

Permalink
Fix clippy warning in tests (#1343)
Browse files Browse the repository at this point in the history
fix clippy warning in tests
  • Loading branch information
Robbepop authored Jan 23, 2025
1 parent 045ec14 commit 174e14c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/wasmi/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ where
let mut store = <Store<T>>::new(&self.engine, data);
let linker = Linker::new(&self.engine);
let results = linker
.instantiate(&mut store, &module)?
.instantiate(&mut store, module)?
.start(&mut store)?
.get_typed_func::<Args, Results>(&store, func_name)?
.call(&mut store, args)?;
Expand Down

0 comments on commit 174e14c

Please sign in to comment.