Index: test/mjsunit/debug-break-native.js |
diff --git a/test/mjsunit/debug-break-native.js b/test/mjsunit/debug-break-native.js |
index 11d7274929c5bbc989bb7890e0c07c0d91d0492b..3e6fff42b57b7ddb89ef04342bf92cd468066dc6 100644 |
--- a/test/mjsunit/debug-break-native.js |
+++ b/test/mjsunit/debug-break-native.js |
@@ -10,7 +10,7 @@ var exception = null; |
function breakListener(event, exec_state, event_data, data) { |
if (event != Debug.DebugEvent.Break) return; |
try { |
- exec_state.prepareStep(Debug.StepAction.StepIn, 1); |
+ exec_state.prepareStep(Debug.StepAction.StepIn); |
// Assert that the break happens at an intended location. |
assertTrue(exec_state.frame(0).sourceLineText().indexOf("// break") > 0); |
} catch (e) { |