| Index: test/cctest/test-heap.cc
|
| diff --git a/test/cctest/test-heap.cc b/test/cctest/test-heap.cc
|
| index 4162357d9ec1ed75d60b2b8f4871d2e717d7d861..7f0a25bde137bfa15e134173c914059dfc61b4c5 100644
|
| --- a/test/cctest/test-heap.cc
|
| +++ b/test/cctest/test-heap.cc
|
| @@ -814,7 +814,7 @@ TEST(JSObjectCopy) {
|
| obj->SetElement(1, *second, NONE, kNonStrictMode)->ToObjectChecked();
|
|
|
| // Make the clone.
|
| - Handle<JSObject> clone = Copy(obj);
|
| + Handle<JSObject> clone = JSObject::Copy(obj);
|
| CHECK(!clone.is_identical_to(obj));
|
|
|
| CHECK_EQ(obj->GetElement(isolate, 0), clone->GetElement(isolate, 0));
|
| @@ -3141,10 +3141,6 @@ TEST(Regress169209) {
|
| i::FLAG_allow_natives_syntax = true;
|
| i::FLAG_flush_code_incrementally = true;
|
|
|
| - // Disable loading the i18n extension which breaks the assumptions of this
|
| - // test about the heap layout.
|
| - i::FLAG_enable_i18n = false;
|
| -
|
| CcTest::InitializeVM();
|
| Isolate* isolate = Isolate::Current();
|
| Heap* heap = isolate->heap();
|
|
|