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
Prev Previous commit
Next Next commit
test: replace anonymous function with arrow function
modified the file test-http-pause.js by replacing the function ()=>
  • Loading branch information
adinhtdsibm committed Oct 16, 2020
commit a8ddc7729cc7287f0258c9e8ba6c136e80f281f9
2 changes: 1 addition & 1 deletion test/parallel/test-http-pause.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const server = http.createServer((req, res) => {

server.listen(0, () => {
const req = http.request({
port: this.address().port,
port: server.address().port,
path: '/',
method: 'POST'
}, (res) => {
Expand Down