We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fa7150 commit 47b10e3Copy full SHA for 47b10e3
test/parallel/test-tls-env-bad-extra-ca.js
@@ -29,7 +29,8 @@ let stderr = '';
29
30
fork(__filename, opts)
31
.on('exit', common.mustCall(function(status) {
32
- assert.strictEqual(status, 0, 'client did not succeed in connecting');
+ // Check that client succeeded in connecting.
33
+ assert.strictEqual(status, 0);
34
}))
35
.on('close', common.mustCall(function() {
36
// TODO(addaleax): Make `SafeGetenv` work like `process.env`
0 commit comments