We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 931addb commit 968cc44Copy full SHA for 968cc44
test/parallel/test-tls-pfx-gh-5100-regr.js
@@ -19,11 +19,7 @@ const server = tls.createServer({
19
requestCert: true,
20
rejectUnauthorized: false
21
}, common.mustCall(function(c) {
22
- assert.strictEqual(
23
- c.authorizationError,
24
- null,
25
- 'authorizationError must be null'
26
- );
+ assert.strictEqual(c.authorizationError, null);
27
c.end();
28
})).listen(0, function() {
29
const client = tls.connect({
0 commit comments