@@ -50,7 +50,7 @@ TEST_F(DebugSymbolsTest, ExternalStringDataOffset) {
5050TEST_F (DebugSymbolsTest, BaseObjectPersistentHandle) {
5151 const v8::HandleScope handle_scope (isolate_);
5252 const Argv argv;
53- Env env{handle_scope, argv, this };
53+ Env env{handle_scope, argv};
5454
5555 v8::Local<v8::Object> object = v8::Object::New (isolate_);
5656 node::BaseObject obj (*env, object);
@@ -67,7 +67,7 @@ TEST_F(DebugSymbolsTest, BaseObjectPersistentHandle) {
6767TEST_F (DebugSymbolsTest, EnvironmentHandleWrapQueue) {
6868 const v8::HandleScope handle_scope (isolate_);
6969 const Argv argv;
70- Env env{handle_scope, argv, this };
70+ Env env{handle_scope, argv};
7171
7272 auto expected = reinterpret_cast <uintptr_t >((*env)->handle_wrap_queue ());
7373 auto calculated = reinterpret_cast <uintptr_t >(*env) +
@@ -78,7 +78,7 @@ TEST_F(DebugSymbolsTest, EnvironmentHandleWrapQueue) {
7878TEST_F (DebugSymbolsTest, EnvironmentReqWrapQueue) {
7979 const v8::HandleScope handle_scope (isolate_);
8080 const Argv argv;
81- Env env{handle_scope, argv, this };
81+ Env env{handle_scope, argv};
8282
8383 auto expected = reinterpret_cast <uintptr_t >((*env)->req_wrap_queue ());
8484 auto calculated = reinterpret_cast <uintptr_t >(*env) +
@@ -89,7 +89,7 @@ TEST_F(DebugSymbolsTest, EnvironmentReqWrapQueue) {
8989TEST_F (DebugSymbolsTest, HandleWrapList) {
9090 const v8::HandleScope handle_scope (isolate_);
9191 const Argv argv;
92- Env env{handle_scope, argv, this };
92+ Env env{handle_scope, argv};
9393
9494 uv_tcp_t handle;
9595
@@ -118,7 +118,7 @@ TEST_F(DebugSymbolsTest, HandleWrapList) {
118118TEST_F (DebugSymbolsTest, ReqWrapList) {
119119 const v8::HandleScope handle_scope (isolate_);
120120 const Argv argv;
121- Env env{handle_scope, argv, this };
121+ Env env{handle_scope, argv};
122122
123123 auto obj_template = v8::FunctionTemplate::New (isolate_);
124124 obj_template->InstanceTemplate ()->SetInternalFieldCount (1 );
0 commit comments