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
Update test/parallel/test-http-outgoing-properties.js
Co-authored-by: mscdex <mscdex@users.noreply.github.com>
  • Loading branch information
zhangwinning and mscdex authored Jun 22, 2020
commit 62cc2aff1790164d3d194186d4c9c0e94ed17b9c
2 changes: 1 addition & 1 deletion test/parallel/test-http-outgoing-properties.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const OutgoingMessage = http.OutgoingMessage;
}

{
const server = http.createServer(function(req, res) {
const server = http.createServer((req, res) => {
res.end();
server.close();
});
Expand Down