summaryrefslogtreecommitdiff
path: root/test/simple/test-http-localaddress-bind-error.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/simple/test-http-localaddress-bind-error.js')
-rw-r--r--test/simple/test-http-localaddress-bind-error.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/simple/test-http-localaddress-bind-error.js b/test/simple/test-http-localaddress-bind-error.js
index 0f9cdbbc0c..719525cc61 100644
--- a/test/simple/test-http-localaddress-bind-error.js
+++ b/test/simple/test-http-localaddress-bind-error.js
@@ -33,6 +33,7 @@ var server = http.createServer(function(req, res) {
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('You are from: ' + req.connection.remoteAddress);
});
+ req.resume();
});
server.listen(common.PORT, "127.0.0.1", function() {