summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorprodroy1 <prodroy1@in.ibm.com>2018-11-23 09:00:31 +0000
committerRod Vagg <rod@vagg.org>2019-02-28 23:37:32 +1100
commit93ab4d241384e949aa3c94d47fd6ebf2a81f3954 (patch)
treeb278ded6500020a35f114260ca314ce89dea572f
parent32d86228ba74b8ff5aa80e6fb9e9c844fb65d1e3 (diff)
downloadnode-new-93ab4d241384e949aa3c94d47fd6ebf2a81f3954.tar.gz
test: replace callback with arrow functions
PR-URL: https://github.com/nodejs/node/pull/24434 Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
-rw-r--r--test/parallel/test-https-close.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/parallel/test-https-close.js b/test/parallel/test-https-close.js
index f33754fb81..d9ed2ba1de 100644
--- a/test/parallel/test-https-close.js
+++ b/test/parallel/test-https-close.js
@@ -13,16 +13,16 @@ const options = {
const connections = {};
-const server = https.createServer(options, function(req, res) {
- const interval = setInterval(function() {
+const server = https.createServer(options, (req, res) => {
+ const interval = setInterval(() => {
res.write('data');
}, 1000);
interval.unref();
});
-server.on('connection', function(connection) {
+server.on('connection', (connection) => {
const key = `${connection.remoteAddress}:${connection.remotePort}`;
- connection.on('close', function() {
+ connection.on('close', () => {
delete connections[key];
});
connections[key] = connection;
@@ -37,16 +37,16 @@ function shutdown() {
}
}
-server.listen(0, function() {
+server.listen(0, () => {
const requestOptions = {
hostname: '127.0.0.1',
- port: this.address().port,
+ port: server.address().port,
path: '/',
method: 'GET',
rejectUnauthorized: false
};
- const req = https.request(requestOptions, function(res) {
+ const req = https.request(requestOptions, (res) => {
res.on('data', () => {});
setImmediate(shutdown);
});