Skip to content

Commit

Permalink
chore: Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
theduke committed Sep 30, 2024
1 parent 9ebdaff commit f3e39d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/compilers/serialize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ fn test_deserialize(config: crate::Config) -> Result<()> {
);
let f0 = Function::new(&mut store, &func_type, |params| {
let param_0: i64 = params[0].unwrap_i32() as i64;
let param_1: i64 = params[1].unwrap_i64() as i64;
let param_1: i64 = params[1].unwrap_i64();
let param_2: i64 = params[2].unwrap_i32() as i64;
let param_3: i64 = params[3].unwrap_f32() as i64;
let param_4: i64 = params[4].unwrap_f64() as i64;
Expand Down

0 comments on commit f3e39d1

Please sign in to comment.