Skip to content

Commit

Permalink
n-api: remove extra reference from test
Browse files Browse the repository at this point in the history
Backport-PR-URL: #19447
PR-URL: #18542
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
  • Loading branch information
Gabriel Schulhof authored and MylesBorins committed Apr 16, 2018
1 parent a8dec48 commit 516c287
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions test/addons-napi/test_constructor/test_constructor.c
Expand Up @@ -3,7 +3,6 @@

static double value_ = 1;
static double static_value_ = 10;
napi_ref constructor_;

napi_value GetValue(napi_env env, napi_callback_info info) {
size_t argc = 0;
Expand Down Expand Up @@ -80,8 +79,6 @@ napi_value Init(napi_env env, napi_value exports) {
NAPI_CALL(env, napi_define_class(env, "MyObject", NAPI_AUTO_LENGTH, New,
NULL, sizeof(properties)/sizeof(*properties), properties, &cons));

NAPI_CALL(env, napi_create_reference(env, cons, 1, &constructor_));

return cons;
}

Expand Down

0 comments on commit 516c287

Please sign in to comment.