Skip to content

Commit

Permalink
test: fix parallel/test-tls-env-extra-ca.js
Browse files Browse the repository at this point in the history
fix args in final assert.strictEqual() call

PR-URL: #21647
Reviewed-By: Rich Trott <[email protected]>
Reviewed-By: Trivikram Kamat <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: Minwoo Jung <[email protected]>
  • Loading branch information
Niicck authored and targos committed Jul 10, 2018
1 parent eda7fff commit 11e9b4e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/parallel/test-tls-env-extra-ca.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ const server = tls.createServer(options, common.mustCall(function(s) {
});

fork(__filename, { env }).on('exit', common.mustCall(function(status) {
assert.strictEqual(status, 0, 'client did not succeed in connecting');
// client did not succeed in connecting
assert.strictEqual(status, 0);
}));
}));

0 comments on commit 11e9b4e

Please sign in to comment.