| Index: test/inspector/debugger/get-possible-breakpoints.js
|
| diff --git a/test/inspector/debugger/get-possible-breakpoints.js b/test/inspector/debugger/get-possible-breakpoints.js
|
| index 640c3e61eaf9aa6f75141e82f5d781b93b94ddbb..ef996e910b52d994559e44ba3dd58ca0bb9fa62b 100644
|
| --- a/test/inspector/debugger/get-possible-breakpoints.js
|
| +++ b/test/inspector/debugger/get-possible-breakpoints.js
|
| @@ -2,7 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -print('Test for Debugger.getPossibleBreakpoints');
|
| +InspectorTest.log('Test for Debugger.getPossibleBreakpoints');
|
|
|
| Protocol.Runtime.enable();
|
| Protocol.Debugger.enable();
|
| @@ -153,7 +153,7 @@ function foo6() { Promise.resolve().then(() => 42) }`;
|
| function compileScript(source, origin) {
|
| var promise = Protocol.Debugger.onceScriptParsed().then(message => message.params.scriptId);
|
| if (!origin) origin = { name: '', line_offset: 0, column_offset: 0 };
|
| - compileAndRunWithOrigin(source, origin.name, origin.line_offset, origin.column_offset, false);
|
| + utils.compileAndRunWithOrigin(source, origin.name, origin.line_offset, origin.column_offset, false);
|
| return promise;
|
| }
|
|
|
|
|