| Index: test/mjsunit/es6/debug-break-default-constructor.js
 | 
| diff --git a/test/mjsunit/es6/debug-break-default-constructor.js b/test/mjsunit/es6/debug-break-default-constructor.js
 | 
| index a06c3b52dee412ad680fd11480e06bb260347d91..fc8bebd13d7dcd7945d2adaf752131f96a9603f3 100644
 | 
| --- a/test/mjsunit/es6/debug-break-default-constructor.js
 | 
| +++ b/test/mjsunit/es6/debug-break-default-constructor.js
 | 
| @@ -14,7 +14,7 @@ var step_count = 0;
 | 
|  function listener(event, execState, eventData, data) {
 | 
|    if (event != Debug.DebugEvent.Break) return;
 | 
|    try {
 | 
| -    execState.prepareStep(Debug.StepAction.StepInto);
 | 
| +    execState.prepareStep(Debug.StepAction.StepIn);
 | 
|      var s = execState.frame().sourceLineText();
 | 
|      step_count++;
 | 
|      assertTrue(s.indexOf('// ' + step_count + '.') >= 0);
 | 
| 
 |