Skip to content

Commit

Permalink
debug(tests): update WAT used in tests
Browse files Browse the repository at this point in the history
Signed-off-by: Victor Adossi <[email protected]>
  • Loading branch information
vados-cosmonic committed Oct 14, 2023
1 parent 4331cb2 commit 45cbc48
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion crates/tests/tests/invalid/multi-value-0.wat
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
(func (export "i64.dup") (param i64) (result i64 i64)
;; With this commented out, there's only a single i64 on the stack.
;; get_local 0
get_local 0))
(local.get 0)))
6 changes: 3 additions & 3 deletions crates/tests/tests/invalid/multi-value-1.wat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(module
(func (export "i64.dup") (param i64) (result i64 i64)
;; Too many i64s on the stack.
get_local 0
get_local 0
get_local 0))
(local.get 0)
(local.get 0)
(local.get 0)))

0 comments on commit 45cbc48

Please sign in to comment.