Index: test/cctest/test-heap.cc |
diff --git a/test/cctest/test-heap.cc b/test/cctest/test-heap.cc |
index f0dc643fc60f3a06b65e190bdc534ff7aca9735b..3f0d4acd57699b0b0027dc60dd9c4ec129e33cd1 100644 |
--- a/test/cctest/test-heap.cc |
+++ b/test/cctest/test-heap.cc |
@@ -952,7 +952,7 @@ TEST(Iteration) { |
// Allocate a JS array to OLD_SPACE and NEW_SPACE |
objs[next_objs_index++] = factory->NewJSArray(10); |
objs[next_objs_index++] = |
- factory->NewJSArray(10, FAST_HOLEY_ELEMENTS, WEAK, TENURED); |
+ factory->NewJSArray(10, FAST_HOLEY_ELEMENTS, Strength::NORMAL, TENURED); |
// Allocate a small string to OLD_DATA_SPACE and NEW_SPACE |
objs[next_objs_index++] = factory->NewStringFromStaticChars("abcdefghij"); |
@@ -2530,8 +2530,8 @@ TEST(PrototypeTransitionClearing) { |
{ |
AlwaysAllocateScope always_allocate(isolate); |
SimulateFullSpace(space); |
- prototype = |
- factory->NewJSArray(32 * KB, FAST_HOLEY_ELEMENTS, WEAK, TENURED); |
+ prototype = factory->NewJSArray(32 * KB, FAST_HOLEY_ELEMENTS, |
+ Strength::NORMAL, TENURED); |
} |
// Add a prototype on an evacuation candidate and verify that transition |