test: fix strictEqual() argument order

PR-URL: https://github.com/nodejs/node/pull/23768
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
This commit is contained in:
Romain Lanz 2018-10-19 23:23:44 +02:00 committed by Daniel Bevenius
parent a1ee86c427
commit d901d16b39

View File

@ -42,13 +42,13 @@ server.listen(0, common.mustCall(function() {
http.get({ port: this.address().port }, common.mustCall(function(res) { http.get({ port: this.address().port }, common.mustCall(function(res) {
let response = ''; let response = '';
assert.strictEqual(200, res.statusCode); assert.strictEqual(res.statusCode, 200);
res.setEncoding('ascii'); res.setEncoding('ascii');
res.on('data', function(chunk) { res.on('data', function(chunk) {
response += chunk; response += chunk;
}); });
res.on('end', common.mustCall(function() { res.on('end', common.mustCall(function() {
assert.strictEqual('1\n2\n3\n', response); assert.strictEqual(response, '1\n2\n3\n');
})); }));
})); }));
})); }));