Index: test/mjsunit/wasm/verify-function-simple.js |
diff --git a/test/mjsunit/wasm/verify-function-simple.js b/test/mjsunit/wasm/verify-function-simple.js |
index a84041ec29c285bf33fefde132542d87bc91c374..c4d51c7423ba2781b9b847c33e92e04cd0039ab0 100644 |
--- a/test/mjsunit/wasm/verify-function-simple.js |
+++ b/test/mjsunit/wasm/verify-function-simple.js |
@@ -16,7 +16,7 @@ try { |
kExprNop // body |
); |
- WASM.verifyFunction(data); |
+ _WASMEXP_.verifyFunction(data); |
print("ok"); |
} catch (e) { |
assertTrue(false); |
@@ -34,7 +34,7 @@ try { |
kExprBlock, 2, kExprNop, kExprNop // body |
); |
- WASM.verifyFunction(data); |
+ _WASMEXP_.verifyFunction(data); |
print("not ok"); |
} catch (e) { |
print("ok: " + e); |