Index: test/cctest/test-unboxed-doubles.cc |
diff --git a/test/cctest/test-unboxed-doubles.cc b/test/cctest/test-unboxed-doubles.cc |
index cad32b725e190f6eb99eec3d19bb978ec408fe9f..7fc9b5beec55c8d4d67c3973962f118ae9e0cf92 100644 |
--- a/test/cctest/test-unboxed-doubles.cc |
+++ b/test/cctest/test-unboxed-doubles.cc |
@@ -1113,8 +1113,7 @@ TEST(DoScavengeWithIncrementalWriteBarrier) { |
AlwaysAllocateScope always_allocate(isolate); |
// Make sure |obj_value| is placed on an old-space evacuation candidate. |
SimulateFullSpace(old_space); |
- obj_value = factory->NewJSArray(32 * KB, FAST_HOLEY_ELEMENTS, |
- Strength::WEAK, TENURED); |
+ obj_value = factory->NewJSArray(32 * KB, FAST_HOLEY_ELEMENTS, TENURED); |
ec_page = Page::FromAddress(obj_value->address()); |
} |
@@ -1453,8 +1452,7 @@ static void TestIncrementalWriteBarrier(Handle<Map> map, Handle<Map> new_map, |
// Make sure |obj_value| is placed on an old-space evacuation candidate. |
SimulateFullSpace(old_space); |
- obj_value = factory->NewJSArray(32 * KB, FAST_HOLEY_ELEMENTS, |
- Strength::WEAK, TENURED); |
+ obj_value = factory->NewJSArray(32 * KB, FAST_HOLEY_ELEMENTS, TENURED); |
ec_page = Page::FromAddress(obj_value->address()); |
CHECK_NE(ec_page, Page::FromAddress(obj->address())); |
} |