We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c6a551 commit bcd14b2Copy full SHA for bcd14b2
test/parallel/test-https-localaddress.js
@@ -39,7 +39,7 @@ const options = {
39
40
const server = https.createServer(options, function(req, res) {
41
console.log(`Connect from: ${req.connection.remoteAddress}`);
42
- assert.strictEqual('127.0.0.2', req.connection.remoteAddress);
+ assert.strictEqual(req.connection.remoteAddress, '127.0.0.2');
43
44
req.on('end', function() {
45
res.writeHead(200, { 'Content-Type': 'text/plain' });
0 commit comments