| Index: test/inspector/debugger/framework-stepping.js
|
| diff --git a/test/inspector/debugger/framework-stepping.js b/test/inspector/debugger/framework-stepping.js
|
| index de75eab9ab509d0f4b1267abc0531721b74ac41a..6c6ae9caa0fc530de80a98acc62b8baf0504612d 100644
|
| --- a/test/inspector/debugger/framework-stepping.js
|
| +++ b/test/inspector/debugger/framework-stepping.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('Checks stepping with blackboxed frames on stack');
|
| +InspectorTest.log('Checks stepping with blackboxed frames on stack');
|
|
|
| InspectorTest.addScript(
|
| `
|
| @@ -47,7 +47,7 @@ Protocol.Debugger.enable()
|
|
|
| var testSuite = [
|
| function testStepIntoFromUser(next) {
|
| - schedulePauseOnNextStatement('', '');
|
| + utils.schedulePauseOnNextStatement('', '');
|
| test('testStepFromUser()', [
|
| 'print', // before testStepFromUser call
|
| 'stepInto', 'stepInto', 'print', // userFoo
|
| @@ -57,7 +57,7 @@ var testSuite = [
|
| },
|
|
|
| function testStepOverFromUser(next) {
|
| - schedulePauseOnNextStatement('', '');
|
| + utils.schedulePauseOnNextStatement('', '');
|
| test('testStepFromUser()', [
|
| 'print', // before testStepFromUser call
|
| 'stepInto', 'stepInto', 'print', // userFoo
|
| @@ -67,7 +67,7 @@ var testSuite = [
|
| },
|
|
|
| function testStepOutFromUser(next) {
|
| - schedulePauseOnNextStatement('', '');
|
| + utils.schedulePauseOnNextStatement('', '');
|
| test('testStepFromUser()', [
|
| 'print', // before testStepFromUser call
|
| 'stepInto', 'stepInto', 'print', // userFoo
|
|
|