| Index: test/mjsunit/wasm/instantiate-module-basic.js | 
| diff --git a/test/mjsunit/wasm/instantiate-module-basic.js b/test/mjsunit/wasm/instantiate-module-basic.js | 
| index a01f27276d9b57de4a71c473881c28e9a1d51033..77292a38eeaabb823d91a066d1d77a8ed2c63fc6 100644 | 
| --- a/test/mjsunit/wasm/instantiate-module-basic.js | 
| +++ b/test/mjsunit/wasm/instantiate-module-basic.js | 
| @@ -126,7 +126,7 @@ assertFalse(WebAssembly.validate(bytes(88, 88, 88, 88, 88, 88, 88, 88))); | 
| (function InstancesAreIsolatedFromEachother() { | 
| print("InstancesAreIsolatedFromEachother..."); | 
| var builder = new WasmModuleBuilder(); | 
| -  builder.addImportedMemory("", "memory", 1,1); | 
| +  builder.addImportedMemory("", "memory", 1); | 
| var kSig_v_i = makeSig([kWasmI32], []); | 
| var signature = builder.addType(kSig_v_i); | 
| builder.addImport("m", "some_value", kSig_i_v); | 
| @@ -207,7 +207,7 @@ assertFalse(WebAssembly.validate(bytes(88, 88, 88, 88, 88, 88, 88, 88))); | 
| (function InstanceMemoryIsIsolated() { | 
| print("InstanceMemoryIsIsolated..."); | 
| var builder = new WasmModuleBuilder(); | 
| -  builder.addImportedMemory("", "memory", 1,1); | 
| +  builder.addImportedMemory("", "memory", 1); | 
|  | 
| builder.addFunction("f", kSig_i_v) | 
| .addBody([ | 
|  |