Skip to content

Commit

Permalink
test: remove string literal message from assertion
Browse files Browse the repository at this point in the history
Remove string literal message in assert.strictEqual() call in napi test
testFinalizer.js.

PR-URL: nodejs#22849
Reviewed-By: Teddy Katz <[email protected]>
Reviewed-By: Matteo Collina <[email protected]>
Reviewed-By: Anna Henningsen <[email protected]>
Reviewed-By: Trivikram Kamat <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
  • Loading branch information
Trott committed Sep 17, 2018
1 parent ece6429 commit 86456ba
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/addons-napi/test_general/testFinalizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,4 @@ test_general.wrap(finalizeAndWrap);
test_general.addFinalizerOnly(finalizeAndWrap, common.mustCall());
finalizeAndWrap = null;
global.gc();
assert.strictEqual(test_general.derefItemWasCalled(), true,
'finalize callback was called');
assert.strictEqual(test_general.derefItemWasCalled(), true);

0 comments on commit 86456ba

Please sign in to comment.