Skip to content

Commit

Permalink
test: remove unused var in test-tls-server-verify
Browse files Browse the repository at this point in the history
`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: nodejs#7595
Reviewed-By: Colin Ihrig <[email protected]>
  • Loading branch information
Trott committed Jul 10, 2016
1 parent e44b438 commit 2bd8942
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions test/parallel/test-tls-server-verify.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -292,7 +290,6 @@ function runTest(port, testIndex) {
return;
}

connections++;
if (c.authorized) {
console.error(prefix + '- authed connection: ' +
c.getPeerCertificate().subject.CN);
Expand Down

0 comments on commit 2bd8942

Please sign in to comment.