diff options
Diffstat (limited to 'test/export-import.wast.fromBinary')
-rw-r--r-- | test/export-import.wast.fromBinary | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/export-import.wast.fromBinary b/test/export-import.wast.fromBinary index 5b7bcd030..b260f8064 100644 --- a/test/export-import.wast.fromBinary +++ b/test/export-import.wast.fromBinary @@ -1,8 +1,8 @@ (module (type $none_=>_none (func)) - (import "env" "test2" (global $gimport$1 i32)) + (import "env" "test2" (global $test2 i32)) (import "env" "test1" (func $test1)) (export "test1" (func $test1)) - (export "test2" (global $gimport$1)) + (export "test2" (global $test2)) ) |