Skip to content

Commit

Permalink
test: change callback function to arrow function
Browse files Browse the repository at this point in the history
PR-URL: nodejs#17699
Reviewed-By: Yosuke Furukawa <[email protected]>
Reviewed-By: Gireesh Punathil <[email protected]>
Reviewed-By: Tobias Nießen <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Jon Moss <[email protected]>
Reviewed-By: Ruben Bridgewater <[email protected]>
  • Loading branch information
skanamaru authored and BridgeAR committed Dec 15, 2017
1 parent 7cf569a commit 37d2773
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/parallel/test-http-date-header.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const http = require('http');

const testResBody = 'other stuff!\n';

const server = http.createServer(function(req, res) {
const server = http.createServer((req, res) => {
assert.ok(!('date' in req.headers),
'Request headers contained a Date.');
res.writeHead(200, {
Expand All @@ -37,16 +37,16 @@ const server = http.createServer(function(req, res) {
server.listen(0);


server.addListener('listening', function() {
server.addListener('listening', () => {
const options = {
port: this.address().port,
port: server.address().port,
path: '/',
method: 'GET'
};
const req = http.request(options, function(res) {
const req = http.request(options, (res) => {
assert.ok('date' in res.headers,
'Response headers didn\'t contain a Date.');
res.addListener('end', function() {
res.addListener('end', () => {
server.close();
process.exit();
});
Expand Down

0 comments on commit 37d2773

Please sign in to comment.