Browse Source

test: Fix test-https-localaddress*

Fix #4418
v0.9.4-release
isaacs 12 years ago
parent
commit
945f877d30
  1. 1
      test/simple/test-https-localaddress-bind-error.js
  2. 2
      test/simple/test-https-localaddress.js

1
test/simple/test-https-localaddress-bind-error.js

@ -39,6 +39,7 @@ var server = https.createServer(options, 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() {

2
test/simple/test-https-localaddress.js

@ -42,6 +42,7 @@ var server = https.createServer(options, 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() {
@ -59,6 +60,7 @@ server.listen(common.PORT, "127.0.0.1", function() {
server.close();
process.exit();
});
res.resume();
});
req.end();
});

Loading…
Cancel
Save