Showing with 3 additions and 2 deletions.
  1. +3 −2 test/simple/test-http-destroyed-socket-write2.js
@@ -49,8 +49,9 @@ server.listen(common.PORT, function() {
req.end();
test();
} else {
timer = setImmediate(write);
req.write('hello');
req.write('hello', function() {
timer = setImmediate(write);
});
}
}