Index: test/cctest/test-accessors.cc |
diff --git a/test/cctest/test-accessors.cc b/test/cctest/test-accessors.cc |
index c3148ff5663e48bf36aa3df42e1066a649bc474c..aac9366d2412d6755fe9ef3545fe1de3ef90874a 100644 |
--- a/test/cctest/test-accessors.cc |
+++ b/test/cctest/test-accessors.cc |
@@ -405,14 +405,14 @@ static void ThrowingGetAccessor( |
Local<String> name, |
const v8::PropertyCallbackInfo<v8::Value>& info) { |
ApiTestFuzzer::Fuzz(); |
- v8::ThrowException(v8_str("g")); |
+ v8::ThrowException(info.GetIsolate(), v8_str("g")); |
} |
static void ThrowingSetAccessor(Local<String> name, |
Local<Value> value, |
const v8::PropertyCallbackInfo<void>& info) { |
- v8::ThrowException(value); |
+ v8::ThrowException(info.GetIsolate(), value); |
} |