Browse Source

test: remove unused var in test-tls-server-verify

`connections` is assigned but never used. Remove it.

(This was missed by the linter in previous versions of ESLint but is
flagged by the current version. Updating the linter is contingent on
this change or some similar remedy landing.)

PR-URL: https://github.com/nodejs/node/pull/7595
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
v4.x
Rich Trott 9 years ago
committed by Myles Borins
parent
commit
b5e516a42c
  1. 3
      test/parallel/test-tls-server-verify.js

3
test/parallel/test-tls-server-verify.js

@ -254,8 +254,6 @@ function runTest(port, testIndex) {
rejectUnauthorized: tcase.rejectUnauthorized
};
var connections = 0;
/*
* If renegotiating - session might be resumed and openssl won't request
* client's certificate (probably because of bug in the openssl)
@ -290,7 +288,6 @@ function runTest(port, testIndex) {
return;
}
connections++;
if (c.authorized) {
console.error(prefix + '- authed connection: ' +
c.getPeerCertificate().subject.CN);

Loading…
Cancel
Save