Index: test/cctest/test-api.cc |
diff --git a/test/cctest/test-api.cc b/test/cctest/test-api.cc |
index deb8074c8c523e92fae209f3de63b46beddccef4..0d98b1a48dea8b276fccabab3d49ad8d5bc46992 100644 |
--- a/test/cctest/test-api.cc |
+++ b/test/cctest/test-api.cc |
@@ -7679,7 +7679,6 @@ static void ArgumentsTestCallback( |
ApiTestFuzzer::Fuzz(); |
v8::Isolate* isolate = args.GetIsolate(); |
Local<Context> context = isolate->GetCurrentContext(); |
- CHECK(args_fun->Equals(context, args.Callee()).FromJust()); |
CHECK_EQ(3, args.Length()); |
CHECK(v8::Integer::New(isolate, 1)->Equals(context, args[0]).FromJust()); |
CHECK(v8::Integer::New(isolate, 2)->Equals(context, args[1]).FromJust()); |
@@ -21928,7 +21927,6 @@ class ApiCallOptimizationChecker { |
static void OptimizationCallback( |
const v8::FunctionCallbackInfo<v8::Value>& info) { |
- CHECK(callee == info.Callee()); |
CHECK(data == info.Data()); |
CHECK(receiver == info.This()); |
if (info.Length() == 1) { |