| Index: test/cctest/test-heap-profiler.cc
|
| diff --git a/test/cctest/test-heap-profiler.cc b/test/cctest/test-heap-profiler.cc
|
| index a319c4d0e61fc05d9e9c8026686016587ff3170d..e1e3c6ac0bbd950393fe312245b488afdcaaac18 100644
|
| --- a/test/cctest/test-heap-profiler.cc
|
| +++ b/test/cctest/test-heap-profiler.cc
|
| @@ -774,7 +774,7 @@ TEST(HeapSnapshotRetainedObjectInfo) {
|
| }
|
|
|
| const v8::HeapGraphNode* native_group_aaa = GetNode(
|
| - snapshot->GetRoot(), v8::HeapGraphNode::kNative, "aaa-group");
|
| + snapshot->GetRoot(), v8::HeapGraphNode::kArtificial, "aaa-group");
|
| CHECK_NE(NULL, native_group_aaa);
|
| CHECK_EQ(1, native_group_aaa->GetChildrenCount());
|
| const v8::HeapGraphNode* aaa = GetNode(
|
| @@ -783,7 +783,7 @@ TEST(HeapSnapshotRetainedObjectInfo) {
|
| CHECK_EQ(2, aaa->GetChildrenCount());
|
|
|
| const v8::HeapGraphNode* native_group_ccc = GetNode(
|
| - snapshot->GetRoot(), v8::HeapGraphNode::kNative, "ccc-group");
|
| + snapshot->GetRoot(), v8::HeapGraphNode::kArtificial, "ccc-group");
|
| const v8::HeapGraphNode* ccc = GetNode(
|
| native_group_ccc, v8::HeapGraphNode::kNative, "ccc");
|
| CHECK_NE(NULL, ccc);
|
|
|