Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
test: replace anonymous function with arrow function
  • Loading branch information
adinhtdsibm committed Oct 15, 2020
commit 15374feac65eac9f2c6461c8417df9a20e4e16f2
2 changes: 1 addition & 1 deletion test/parallel/test-http-pause.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const server = http.createServer((req, res) => {
}, 100);
});

server.listen(0, function() {
server.listen(0, () => {
Comment thread
adinhtdsibm marked this conversation as resolved.
Outdated
const req = http.request({
port: this.address().port,
path: '/',
Expand Down