| Index: test/mjsunit/debug-stepout-recursive-function.js
|
| diff --git a/test/mjsunit/debug-stepout-recursive-function.js b/test/mjsunit/debug-stepout-recursive-function.js
|
| index 475fe26592704dbc76fbe8f5369d27473467c620..3741f26a8d055fc94e2c11ca23f7105ab28803a3 100644
|
| --- a/test/mjsunit/debug-stepout-recursive-function.js
|
| +++ b/test/mjsunit/debug-stepout-recursive-function.js
|
| @@ -97,7 +97,7 @@ fact(3);
|
| EndTest(2);
|
|
|
| BeginTest('Test 4');
|
| -shouldBreak = function(x) { print(x); return x == 1 || x == 3; };
|
| +shouldBreak = function(x) { return x == 1 || x == 3; };
|
| step_out_count = 2;
|
| fact(3);
|
| EndTest(3);
|
|
|