Skip to content

Commit 968cc44

Browse files
Saeed-NavarikMylesBorins
authored andcommitted
test: remove messages in assert.strictEqual
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>
1 parent 931addb commit 968cc44

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
@@ -19,11 +19,7 @@ const server = tls.createServer({
1919
requestCert: true,
2020
rejectUnauthorized: false
2121
}, common.mustCall(function(c) {
22-
assert.strictEqual(
23-
c.authorizationError,
24-
null,
25-
'authorizationError must be null'
26-
);
22+
assert.strictEqual(c.authorizationError, null);
2723
c.end();
2824
})).listen(0, function() {
2925
const client = tls.connect({

0 commit comments

Comments
 (0)