summaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-npn-server-client.js
diff options
context:
space:
mode:
authorGibson Fahnestock <gib@uk.ibm.com>2017-01-08 13:19:00 +0000
committerGibson Fahnestock <gib@uk.ibm.com>2017-01-11 11:43:52 +0000
commit7a0e462f9facfff8ccd7b37eb5b65db1c2b2f55f (patch)
treea971102d320e17e6cb3d00c48fe708b2b86c8136 /test/parallel/test-tls-npn-server-client.js
parent1ef401ce92d6195878b9d041cc969612628f5852 (diff)
downloadnode-new-7a0e462f9facfff8ccd7b37eb5b65db1c2b2f55f.tar.gz
test: use eslint to fix var->const/let
Manually fix issues that eslint --fix couldn't do automatically. PR-URL: https://github.com/nodejs/node/pull/10685 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
Diffstat (limited to 'test/parallel/test-tls-npn-server-client.js')
-rw-r--r--test/parallel/test-tls-npn-server-client.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/parallel/test-tls-npn-server-client.js b/test/parallel/test-tls-npn-server-client.js
index fdd9fcbb32..1b622cc8f7 100644
--- a/test/parallel/test-tls-npn-server-client.js
+++ b/test/parallel/test-tls-npn-server-client.js
@@ -24,7 +24,7 @@ function loadPEM(n) {
return fs.readFileSync(filenamePEM(n));
}
-var serverOptions = {
+const serverOptions = {
key: loadPEM('agent2-key'),
cert: loadPEM('agent2-cert'),
crl: loadPEM('ca2-crl'),
@@ -38,7 +38,7 @@ var serverOptions = {
NPNProtocols: ['a', 'b', 'c']
};
-var clientsOptions = [{
+const clientsOptions = [{
port: undefined,
key: serverOptions.key,
cert: serverOptions.cert,
@@ -70,7 +70,7 @@ var clientsOptions = [{
const serverResults = [];
const clientsResults = [];
-var server = tls.createServer(serverOptions, function(c) {
+const server = tls.createServer(serverOptions, function(c) {
serverResults.push(c.npnProtocol);
});
server.listen(0, startTest);
@@ -78,7 +78,7 @@ server.listen(0, startTest);
function startTest() {
function connectClient(options, callback) {
options.port = server.address().port;
- var client = tls.connect(options, function() {
+ const client = tls.connect(options, function() {
clientsResults.push(client.npnProtocol);
client.destroy();