Skip to content

Commit

Permalink
fix test representation in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Maciej Wójcik committed Aug 23, 2024
1 parent 8b886e5 commit f3a6f1a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/e2e/v0/host.rs
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,7 @@ fn dynamically_add_host_func() {
(module
(type $t0 (func (result i32)))
(import "env" "add_func" (func $add_func (result i32)))
(import "env" "table" (table 10 anyfunc))
(import "env" "table" (table 10 funcref))
(func (export "test") (result i32)
;; Call add_func but discard the result
call $add_func
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/wat/accumulate_u8.wast
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
(type $1 (func))
(import "env" "memoryBase" (global $import$0 i32))
(import "env" "memory" (memory $0 256))
(import "env" "table" (table 0 anyfunc))
(import "env" "table" (table 0 funcref))
(import "env" "tableBase" (global $import$3 i32))
(global $global$0 (mut i32) (i32.const 0))
(global $global$1 (mut i32) (i32.const 0))
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/wat/inc_i32.wast
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
(type $1 (func))
(import "env" "memoryBase" (global $import$0 i32))
(import "env" "memory" (memory $0 256))
(import "env" "table" (table 0 anyfunc))
(import "env" "table" (table 0 funcref))
(import "env" "tableBase" (global $import$3 i32))
(global $global$0 (mut i32) (i32.const 0))
(global $global$1 (mut i32) (i32.const 0))
Expand Down

0 comments on commit f3a6f1a

Please sign in to comment.