| Index: test/cctest/test-parsing.cc
|
| diff --git a/test/cctest/test-parsing.cc b/test/cctest/test-parsing.cc
|
| index 99c39704612bf55f3d6ecab309b2aa019bb5a3de..80b276c8f991c318bf90ec8f76314dc0b514e793 100644
|
| --- a/test/cctest/test-parsing.cc
|
| +++ b/test/cctest/test-parsing.cc
|
| @@ -1067,8 +1067,8 @@ i::Handle<i::String> FormatMessage(i::ScriptDataImpl* data) {
|
| i::GetProperty(builtins, "FormatMessage");
|
| i::Handle<i::Object> arg_handles[] = { format, args_array };
|
| bool has_exception = false;
|
| - i::Handle<i::Object> result =
|
| - i::Execution::Call(format_fun, builtins, 2, arg_handles, &has_exception);
|
| + i::Handle<i::Object> result = i::Execution::Call(
|
| + isolate, format_fun, builtins, 2, arg_handles, &has_exception);
|
| CHECK(!has_exception);
|
| CHECK(result->IsString());
|
| for (int i = 0; i < args.length(); i++) {
|
|
|