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 <cjihrig@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
  • Loading branch information
Saeed-Navarik authored and MylesBorins committed Oct 17, 2017
1 parent c405f95 commit c81b425
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 @@ -19,11 +19,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 c81b425

Please sign in to comment.