| Index: test/mjsunit/call-runtime-tail.js
|
| diff --git a/test/mjsunit/call-runtime-tail.js b/test/mjsunit/call-runtime-tail.js
|
| index 6ad107dcb2f74886593765832cebaa0ca0ea3143..0d4dab0e8555dee98ace6bd62e0c9cc2141231b7 100644
|
| --- a/test/mjsunit/call-runtime-tail.js
|
| +++ b/test/mjsunit/call-runtime-tail.js
|
| @@ -50,7 +50,7 @@ tailee3 = function(px) {
|
| };
|
|
|
| %OptimizeFunctionOnNextCall(tailee3);
|
| -assertThrows(function() { tailee3.call(p1, p2); });
|
| +assertEquals(p1, tailee3.call(p1, p2));
|
|
|
| // Ensure too many parameters defeats the tail call optimization (currently
|
| // unsupported).
|
|
|