Skip to content

Commit

Permalink
n-api,test: remove last argument in assert.strictEqual()
Browse files Browse the repository at this point in the history
  • Loading branch information
susantruong committed Nov 25, 2018
1 parent d45e303 commit a292879
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions test/addons-napi/test_env_sharing/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@ const storeEnv = require(`./build/${common.buildType}/store_env`);
const compareEnv = require(`./build/${common.buildType}/compare_env`);
const assert = require('assert');

assert.strictEqual(compareEnv(storeEnv), true,
'N-API environment pointers in two different modules have ' +
'the same value');
// N-API environment pointers in two different modules have the same value
assert.strictEqual(compareEnv(storeEnv), true);

0 comments on commit a292879

Please sign in to comment.