Index: test/cctest/test-global-handles.cc |
diff --git a/test/cctest/test-global-handles.cc b/test/cctest/test-global-handles.cc |
index 1d33a8c86b7c9581949a33df1698b8d6f652d339..e608645e9ce39a844951d22c8e54fdf446713c18 100644 |
--- a/test/cctest/test-global-handles.cc |
+++ b/test/cctest/test-global-handles.cc |
@@ -86,7 +86,7 @@ class TestObjectVisitor : public ObjectVisitor { |
TEST(IterateObjectGroupsOldApi) { |
CcTest::InitializeVM(); |
- GlobalHandles* global_handles = Isolate::Current()->global_handles(); |
+ GlobalHandles* global_handles = CcTest::i_isolate()->global_handles(); |
v8::HandleScope handle_scope(CcTest::isolate()); |
@@ -181,7 +181,7 @@ TEST(IterateObjectGroupsOldApi) { |
TEST(IterateObjectGroups) { |
CcTest::InitializeVM(); |
- GlobalHandles* global_handles = Isolate::Current()->global_handles(); |
+ GlobalHandles* global_handles = CcTest::i_isolate()->global_handles(); |
v8::HandleScope handle_scope(CcTest::isolate()); |
@@ -275,7 +275,7 @@ TEST(IterateObjectGroups) { |
TEST(ImplicitReferences) { |
CcTest::InitializeVM(); |
- GlobalHandles* global_handles = Isolate::Current()->global_handles(); |
+ GlobalHandles* global_handles = CcTest::i_isolate()->global_handles(); |
v8::HandleScope handle_scope(CcTest::isolate()); |
@@ -319,7 +319,7 @@ TEST(ImplicitReferences) { |
TEST(EternalHandles) { |
CcTest::InitializeVM(); |
- Isolate* isolate = Isolate::Current(); |
+ Isolate* isolate = CcTest::i_isolate(); |
v8::Isolate* v8_isolate = reinterpret_cast<v8::Isolate*>(isolate); |
EternalHandles* eternal_handles = isolate->eternal_handles(); |