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>
This commit is contained in:
Rich Trott 2016-07-07 15:02:05 -07:00
parent e44b438777
commit 2bd89421d5

View File

@ -256,8 +256,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)
@ -292,7 +290,6 @@ function runTest(port, testIndex) {
return;
}
connections++;
if (c.authorized) {
console.error(prefix + '- authed connection: ' +
c.getPeerCertificate().subject.CN);