| Index: test/cctest/test-serialize.cc
|
| diff --git a/test/cctest/test-serialize.cc b/test/cctest/test-serialize.cc
|
| index 0c989dc2e65d4a232b72dc8785e473855f3b1ea9..37d68de21108b3a39a7d283a077872d3885938ea 100644
|
| --- a/test/cctest/test-serialize.cc
|
| +++ b/test/cctest/test-serialize.cc
|
| @@ -294,11 +294,11 @@ static void SanityCheck() {
|
| Isolate* isolate = CcTest::i_isolate();
|
| v8::HandleScope scope(CcTest::isolate());
|
| #ifdef VERIFY_HEAP
|
| - HEAP->Verify();
|
| + CcTest::heap()->Verify();
|
| #endif
|
| CHECK(isolate->global_object()->IsJSObject());
|
| CHECK(isolate->native_context()->IsContext());
|
| - CHECK(HEAP->string_table()->IsStringTable());
|
| + CHECK(CcTest::heap()->string_table()->IsStringTable());
|
| CHECK(!isolate->factory()->InternalizeOneByteString(
|
| STATIC_ASCII_VECTOR("Empty"))->IsFailure());
|
| }
|
|
|