Chromium Code Reviews| Index: test/mjsunit/with-readonly.js |
| diff --git a/test/mjsunit/with-readonly.js b/test/mjsunit/with-readonly.js |
| index e29520a4dccb26a990420c14647a77d0d4ce9c6c..43583348e95e9a59c617bad912b1413774ff33b4 100644 |
| --- a/test/mjsunit/with-readonly.js |
| +++ b/test/mjsunit/with-readonly.js |
| @@ -36,8 +36,8 @@ function f() { |
| with (o) { |
| length = 23; |
| length = 24; |
| - assertEquals(24, length); |
| + assertEquals(2, length); |
| } |
| + assertEquals(2, o.length); |
| } |
| f(); |
| - |