| Index: test/inspector/runtime/get-properties.js
|
| diff --git a/test/inspector/runtime/get-properties.js b/test/inspector/runtime/get-properties.js
|
| index 86fe9fa6d1a28fa83273843d7de2af4ba652cb9d..579e5422d99ba14d78f4a92db2168e4b480f3e04 100644
|
| --- a/test/inspector/runtime/get-properties.js
|
| +++ b/test/inspector/runtime/get-properties.js
|
| @@ -50,7 +50,8 @@ function runRequestSeries(step)
|
| }
|
| processStep(next);
|
| }
|
| - InspectorTest.sendCommand(s.command, s.params, innerCallback);
|
| + var command = s.command.split(".");
|
| + Protocol[command[0]][command[1]](s.params).then(innerCallback);
|
| }
|
| }
|
|
|
|
|