| Index: test/mjsunit/fast-prototype.js
|
| diff --git a/test/mjsunit/fast-prototype.js b/test/mjsunit/fast-prototype.js
|
| index 98647612f6ddcc5b1ed1d1caa82c81b5ac718d4a..c59ec94ef0cffb30b661975d9dd76fc99cafcde6 100644
|
| --- a/test/mjsunit/fast-prototype.js
|
| +++ b/test/mjsunit/fast-prototype.js
|
| @@ -114,9 +114,9 @@ for (key in x) {
|
| assertTrue(key == 'a');
|
| break;
|
| }
|
| -assertFalse(%HasFastProperties(x));
|
| +assertTrue(%HasFastProperties(x));
|
| x.d = 4;
|
| -assertFalse(%HasFastProperties(x));
|
| +assertTrue(%HasFastProperties(x));
|
| for (key in x) {
|
| assertTrue(key == 'a');
|
| break;
|
|
|