| Index: test/mjsunit/regress/regress-3199913.js
|
| diff --git a/test/mjsunit/regress/regress-3199913.js b/test/mjsunit/regress/regress-3199913.js
|
| index e202af18f3e1ffd1b0bd79f660955226f7157380..073d6cc2d2dc338cdfb77c434b9f69141553ed43 100644
|
| --- a/test/mjsunit/regress/regress-3199913.js
|
| +++ b/test/mjsunit/regress/regress-3199913.js
|
| @@ -29,16 +29,16 @@
|
| // intended.
|
|
|
| var y = {
|
| - 'a' : function (x, y) { return 'called a(' + x + ', ' + y + ')' },
|
| - 'b' : function (x, y) { return 'called b(' + x + ', ' + y + ')' }
|
| -}
|
| + 'a' : function (x, y) { return 'called a(' + x + ', ' + y + ')'; },
|
| + 'b' : function (x, y) { return 'called b(' + x + ', ' + y + ')'; }
|
| +};
|
|
|
| function C() {
|
| }
|
|
|
| C.prototype.f = function () {
|
| return y[(this.a == 1 ? "a" : "b")](0, 1);
|
| -}
|
| +};
|
|
|
| -obj = new C()
|
| -assertEquals('called b(0, 1)', obj.f())
|
| +obj = new C();
|
| +assertEquals('called b(0, 1)', obj.f());
|
|
|