summaryrefslogtreecommitdiff
path: root/test/parallel/test-https-localaddress.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-https-localaddress.js')
-rw-r--r--test/parallel/test-https-localaddress.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/parallel/test-https-localaddress.js b/test/parallel/test-https-localaddress.js
index 22e96eb467..78583b38ec 100644
--- a/test/parallel/test-https-localaddress.js
+++ b/test/parallel/test-https-localaddress.js
@@ -14,12 +14,12 @@ if (!common.hasMultiLocalhost()) {
return;
}
-var options = {
+const options = {
key: fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'),
cert: fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem')
};
-var server = https.createServer(options, function(req, res) {
+const server = https.createServer(options, function(req, res) {
console.log('Connect from: ' + req.connection.remoteAddress);
assert.equal('127.0.0.2', req.connection.remoteAddress);
@@ -31,7 +31,7 @@ var server = https.createServer(options, function(req, res) {
});
server.listen(0, '127.0.0.1', function() {
- var options = {
+ const options = {
host: 'localhost',
port: this.address().port,
path: '/',
@@ -40,7 +40,7 @@ server.listen(0, '127.0.0.1', function() {
rejectUnauthorized: false
};
- var req = https.request(options, function(res) {
+ const req = https.request(options, function(res) {
res.on('end', function() {
server.close();
process.exit();