@@ -70,7 +70,7 @@ TEST_F(DebugSymbolsTest, ExternalStringDataOffset) {
7070TEST_F (DebugSymbolsTest, BaseObjectPersistentHandle) {
7171 const v8::HandleScope handle_scope (isolate_);
7272 const Argv argv;
73- Env env{handle_scope, argv, this };
73+ Env env{handle_scope, argv};
7474
7575 v8::Local<v8::Object> object = v8::Object::New (isolate_);
7676 node::BaseObject obj (*env, object);
@@ -87,7 +87,7 @@ TEST_F(DebugSymbolsTest, BaseObjectPersistentHandle) {
8787TEST_F (DebugSymbolsTest, EnvironmentHandleWrapQueue) {
8888 const v8::HandleScope handle_scope (isolate_);
8989 const Argv argv;
90- Env env{handle_scope, argv, this };
90+ Env env{handle_scope, argv};
9191
9292 auto expected = reinterpret_cast <uintptr_t >((*env)->handle_wrap_queue ());
9393 auto calculated = reinterpret_cast <uintptr_t >(*env) +
@@ -98,7 +98,7 @@ TEST_F(DebugSymbolsTest, EnvironmentHandleWrapQueue) {
9898TEST_F (DebugSymbolsTest, EnvironmentReqWrapQueue) {
9999 const v8::HandleScope handle_scope (isolate_);
100100 const Argv argv;
101- Env env{handle_scope, argv, this };
101+ Env env{handle_scope, argv};
102102
103103 auto expected = reinterpret_cast <uintptr_t >((*env)->req_wrap_queue ());
104104 auto calculated = reinterpret_cast <uintptr_t >(*env) +
@@ -109,7 +109,7 @@ TEST_F(DebugSymbolsTest, EnvironmentReqWrapQueue) {
109109TEST_F (DebugSymbolsTest, HandleWrapList) {
110110 const v8::HandleScope handle_scope (isolate_);
111111 const Argv argv;
112- Env env{handle_scope, argv, this };
112+ Env env{handle_scope, argv};
113113
114114 uv_tcp_t handle;
115115
@@ -138,7 +138,7 @@ TEST_F(DebugSymbolsTest, HandleWrapList) {
138138TEST_F (DebugSymbolsTest, ReqWrapList) {
139139 const v8::HandleScope handle_scope (isolate_);
140140 const Argv argv;
141- Env env{handle_scope, argv, this };
141+ Env env{handle_scope, argv};
142142
143143 auto obj_template = v8::FunctionTemplate::New (isolate_);
144144 obj_template->InstanceTemplate ()->SetInternalFieldCount (1 );
0 commit comments