Skip to content

Commit 1d7e1c0

Browse files
Saeed-NavarikMylesBorins
authored andcommitted
test: remove messages in assert.strictEqual
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]>
1 parent 8ea9648 commit 1d7e1c0

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

test/parallel/test-tls-pfx-gh-5100-regr.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,7 @@ const server = tls.createServer({
1717
requestCert: true,
1818
rejectUnauthorized: false
1919
}, common.mustCall(function(c) {
20-
assert.strictEqual(
21-
c.authorizationError,
22-
null,
23-
'authorizationError must be null'
24-
);
20+
assert.strictEqual(c.authorizationError, null);
2521
c.end();
2622
})).listen(0, function() {
2723
const client = tls.connect({

0 commit comments

Comments
 (0)