| Index: test/mjsunit/value-of.js
|
| diff --git a/test/mjsunit/value-of.js b/test/mjsunit/value-of.js
|
| index 1a242c0ec4ae92ac62c81f61ee442a2261848c50..3490ac97f3438add42e3a574de68f30377daf910 100644
|
| --- a/test/mjsunit/value-of.js
|
| +++ b/test/mjsunit/value-of.js
|
| @@ -28,6 +28,6 @@
|
| function MyException() { }
|
|
|
| var o = new Object();
|
| -o.valueOf = function() { throw new MyException(); }
|
| +o.valueOf = function() { throw new MyException(); };
|
|
|
| -assertThrows(function() { o + 1 }, MyException);
|
| +assertThrows(function() { o + 1; }, MyException);
|
|
|