| Index: test/inspector/runtime/call-function-on-async.js
|
| diff --git a/test/inspector/runtime/call-function-on-async.js b/test/inspector/runtime/call-function-on-async.js
|
| index 4a72bbd40f3b6f4aec1886f16c7a2808b3c91f5a..cf2e73494485197129788d0f06e0ba0e1e59c125 100644
|
| --- a/test/inspector/runtime/call-function-on-async.js
|
| +++ b/test/inspector/runtime/call-function-on-async.js
|
| @@ -102,7 +102,7 @@ function callFunctionOn(objectExpression, functionDeclaration, argumentExpressio
|
| var objectId;
|
| var callArguments = [];
|
| var promise = Protocol.Runtime.evaluate({ expression: objectExpression })
|
| - .then((result) => objectId = result.result.result.objectId)
|
| + .then((result) => objectId = result.result.result.objectId);
|
| for (let argumentExpression of argumentExpressions) {
|
| promise = promise
|
| .then(() => Protocol.Runtime.evaluate({ expression: argumentExpression }))
|
|
|