Skip to content

Commit

Permalink
test: remove messages in assert.strictEqual
Browse files Browse the repository at this point in the history
PR-URL: #16014
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Joyee Cheung <[email protected]>
Reviewed-By: Benjamin Gruenbaum <[email protected]>
Reviewed-By: Gibson Fahnestock <[email protected]>
Reviewed-By: Tobias Nießen <[email protected]>
  • Loading branch information
Saeed-Navarik authored and MylesBorins committed Oct 11, 2017
1 parent 8ea9648 commit 1d7e1c0
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions test/parallel/test-tls-pfx-gh-5100-regr.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,7 @@ const server = tls.createServer({
requestCert: true,
rejectUnauthorized: false
}, common.mustCall(function(c) {
assert.strictEqual(
c.authorizationError,
null,
'authorizationError must be null'
);
assert.strictEqual(c.authorizationError, null);
c.end();
})).listen(0, function() {
const client = tls.connect({
Expand Down

0 comments on commit 1d7e1c0

Please sign in to comment.