| Index: test/mjsunit/es6/debug-step-into-constructor.js
|
| diff --git a/test/mjsunit/es6/debug-step-into-constructor.js b/test/mjsunit/es6/debug-step-into-constructor.js
|
| index 1e903256fd0a0b8ff9bfee270896731bcd19e833..96cdc931592ec717154a356d06621efbb17f3893 100644
|
| --- a/test/mjsunit/es6/debug-step-into-constructor.js
|
| +++ b/test/mjsunit/es6/debug-step-into-constructor.js
|
| @@ -12,7 +12,7 @@ var done, stepCount;
|
| function listener(event, execState, eventData, data) {
|
| if (event == Debug.DebugEvent.Break) {
|
| if (!done) {
|
| - execState.prepareStep(Debug.StepAction.StepInto);
|
| + execState.prepareStep(Debug.StepAction.StepIn);
|
| var s = execState.frame().sourceLineText();
|
| assertTrue(s.indexOf('// ' + stepCount + '.') !== -1);
|
| stepCount++;
|
|
|