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
Removed useless space
  • Loading branch information
jklepatch committed Jun 17, 2017
commit 4407446ed1ff4cb139b7249b81903f02cb8fe924
2 changes: 1 addition & 1 deletion test/parallel/test-http-set-timeout-server.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ test(function serverTimeout(cb) {
test(function serverRequestTimeout(cb) {
const server = http.createServer(function(req, res) {
// just do nothing, we should get a timeout event.
const s = req.setTimeout(50, common.mustCall(function(socket) {
const s = req.setTimeout(50, common.mustCall(function(socket) {
socket.destroy();
server.close();
cb();
Expand Down