summaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/debugger/asm-js-breakpoint-before-exec.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/inspector/debugger/asm-js-breakpoint-before-exec.js')
-rw-r--r--deps/v8/test/inspector/debugger/asm-js-breakpoint-before-exec.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/test/inspector/debugger/asm-js-breakpoint-before-exec.js b/deps/v8/test/inspector/debugger/asm-js-breakpoint-before-exec.js
index 78a7b8e57e..ec760ecf08 100644
--- a/deps/v8/test/inspector/debugger/asm-js-breakpoint-before-exec.js
+++ b/deps/v8/test/inspector/debugger/asm-js-breakpoint-before-exec.js
@@ -4,7 +4,7 @@
// Flags: --validate-asm --allow-natives-syntax
-InspectorTest.log(
+let {session, contextGroup, Protocol} = InspectorTest.start(
'This test runs asm.js which calls back to JS. Before executing (after ' +
'the script is parsed) we set breakpoints in the asm.js code.');
@@ -50,7 +50,7 @@ InspectorTest.runTestSuite([
function addScript(next) {
afterScriptParsedCallback = next;
- InspectorTest.addScript(testFunction.toString());
+ contextGroup.addScript(testFunction.toString());
},
function runTestFunction(next) {