Skip to content

Commit

Permalink
feature/polymorphic_testing - fixed indentation in wasm code
Browse files Browse the repository at this point in the history
  • Loading branch information
george-cosma committed Jul 2, 2024
1 parent 600fccf commit 6bcf7c2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/arithmetic/multiply.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ pub fn multiply() {

let wat = r#"
(module
(func (export "multiply") (param $x i32) (result i32)
local.get $x
i32.const 3
i32.mul)
(func (export "multiply") (param $x i32) (result i32)
local.get $x
i32.const 3
i32.mul)
)
"#;
let wasm_bytes = wat::parse_str(wat).unwrap();
Expand Down

0 comments on commit 6bcf7c2

Please sign in to comment.