★ wanayoo — archive 1999 https://github.com/nodejs/node/commit/5684da5360Nouvelle recherche | Portail wanayoo
Skip to content
Permalink
Browse files
test: changed function to arrow function
PR-URL: #25441
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
  • Loading branch information
yathamravali authored and addaleax committed Jan 23, 2019
1 parent 291cedf commit 5684da5360c5218bbd1a17cdecab47861544ce15
Showing with 6 additions and 6 deletions.
  1. +6 −6 test/parallel/test-http.js
@@ -27,7 +27,7 @@ const url = require('url');

const expectedRequests = ['/hello', '/there', '/world'];

const server = http.Server(common.mustCall(function(req, res) {
const server = http.Server(common.mustCall((req, res) => {
assert.strictEqual(expectedRequests.shift(), req.url);

switch (req.url) {
@@ -50,9 +50,9 @@ const server = http.Server(common.mustCall(function(req, res) {
}

if (expectedRequests.length === 0)
this.close();
server.close();

req.on('end', function() {
req.on('end', () => {
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.write(`The path was ${url.parse(req.url).pathname}`);
res.end();
@@ -61,10 +61,10 @@ const server = http.Server(common.mustCall(function(req, res) {
}, 3));
server.listen(0);

server.on('listening', function() {
const agent = new http.Agent({ port: this.address().port, maxSockets: 1 });
server.on('listening', () => {
const agent = new http.Agent({ port: server.address().port, maxSockets: 1 });
const req = http.get({
port: this.address().port,
port: server.address().port,
path: '/hello',
headers: {
Accept: '*/*',

0 comments on commit 5684da5

Please sign in to comment.