| Index: test/cctest/test-api.cc
|
| diff --git a/test/cctest/test-api.cc b/test/cctest/test-api.cc
|
| index 9df749bbc98a7b5b39352161f2ea9dc7cd0cec28..10bfd047dbdfde4f68c808c97c72480dba5d84c5 100644
|
| --- a/test/cctest/test-api.cc
|
| +++ b/test/cctest/test-api.cc
|
| @@ -21621,19 +21621,19 @@ TEST(ExtrasExportsObject) {
|
|
|
| // standalone.gypi ensures we include the test-extra.js file, which should
|
| // export the tested functions.
|
| - v8::Local<v8::Object> exports = env->GetExtrasExportsObject();
|
| + v8::Local<v8::Object> binding = env->GetExtrasBindingObject();
|
|
|
| auto func =
|
| - exports->Get(v8_str("testExtraShouldReturnFive")).As<v8::Function>();
|
| + binding->Get(v8_str("testExtraShouldReturnFive")).As<v8::Function>();
|
| auto undefined = v8::Undefined(isolate);
|
| auto result = func->Call(undefined, 0, {}).As<v8::Number>();
|
| CHECK_EQ(5, result->Int32Value());
|
|
|
| v8::Handle<v8::FunctionTemplate> runtimeFunction =
|
| v8::FunctionTemplate::New(isolate, ExtrasExportsTestRuntimeFunction);
|
| - exports->Set(v8_str("runtime"), runtimeFunction->GetFunction());
|
| + binding->Set(v8_str("runtime"), runtimeFunction->GetFunction());
|
| func =
|
| - exports->Get(v8_str("testExtraShouldCallToRuntime")).As<v8::Function>();
|
| + binding->Get(v8_str("testExtraShouldCallToRuntime")).As<v8::Function>();
|
| result = func->Call(undefined, 0, {}).As<v8::Number>();
|
| CHECK_EQ(7, result->Int32Value());
|
| }
|
|
|