| Index: test/cctest/test-heap.cc | 
| diff --git a/test/cctest/test-heap.cc b/test/cctest/test-heap.cc | 
| index 33aaed3342fcab0b259d39f8958a5fef38e1e11d..d4a40bf86184a33a73fe4bd89d18d94a296ad5d3 100644 | 
| --- a/test/cctest/test-heap.cc | 
| +++ b/test/cctest/test-heap.cc | 
| @@ -673,7 +673,7 @@ TEST(JSArray) { | 
| array->SetElementsLength(Smi::FromInt(0))->ToObjectChecked(); | 
| CHECK_EQ(Smi::FromInt(0), array->length()); | 
| // Must be in fast mode. | 
| -  CHECK(array->HasFastSmiOrObjectElements()); | 
| +  CHECK(array->HasFastTypeElements()); | 
|  | 
| // array[length] = name. | 
| array->SetElement(0, *name, NONE, kNonStrictMode)->ToObjectChecked(); | 
| @@ -811,9 +811,7 @@ TEST(Iteration) { | 
|  | 
| // Allocate a JS array to OLD_POINTER_SPACE and NEW_SPACE | 
| objs[next_objs_index++] = FACTORY->NewJSArray(10); | 
| -  objs[next_objs_index++] = FACTORY->NewJSArray(10, | 
| -                                                FAST_HOLEY_ELEMENTS, | 
| -                                                TENURED); | 
| +  objs[next_objs_index++] = FACTORY->NewJSArray(10, FAST_ELEMENTS, TENURED); | 
|  | 
| // Allocate a small string to OLD_DATA_SPACE and NEW_SPACE | 
| objs[next_objs_index++] = | 
| @@ -1597,7 +1595,7 @@ TEST(PrototypeTransitionClearing) { | 
| Handle<JSObject> prototype; | 
| PagedSpace* space = HEAP->old_pointer_space(); | 
| do { | 
| -    prototype = FACTORY->NewJSArray(32 * KB, FAST_HOLEY_ELEMENTS, TENURED); | 
| +    prototype = FACTORY->NewJSArray(32 * KB, FAST_ELEMENTS, TENURED); | 
| } while (space->FirstPage() == space->LastPage() || | 
| !space->LastPage()->Contains(prototype->address())); | 
|  | 
|  |