| 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 ef87d0e136429f8121c1e8ce4c6e16c26e3296e8..aa5c67683eb16ad38c210c8c97e54122ffab74ae 100644
|
| --- a/test/mjsunit/wasm/verify-function-simple.js
|
| +++ b/test/mjsunit/wasm/verify-function-simple.js
|
| @@ -13,7 +13,7 @@ try {
|
| kExprNop // body
|
| );
|
|
|
| - _WASMEXP_.verifyFunction(data);
|
| + Wasm.verifyFunction(data);
|
| print("ok");
|
| } catch (e) {
|
| assertTrue(false);
|
| @@ -28,7 +28,7 @@ try {
|
| kExprBlock, 2, kExprNop, kExprNop // body
|
| );
|
|
|
| - _WASMEXP_.verifyFunction(data);
|
| + Wasm.verifyFunction(data);
|
| print("not ok");
|
| } catch (e) {
|
| print("ok: " + e);
|
|
|