test: fix assert.strictEqual() argument order

PR-URL: https://github.com/nodejs/node/pull/23529
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
This commit is contained in:
ssamuels0916 2018-10-12 10:21:44 -07:00 committed by Ruben Bridgewater
parent d51d1ad4c8
commit 5ae0f111dc
No known key found for this signature in database
GPG Key ID: F07496B3EB3C1762

View File

@ -40,13 +40,13 @@ const server = http.Server(function(req, res) {
req.on('data', (d) => {
measuredSize += d.length;
for (let j = 0; j < d.length; j++) {
assert.strictEqual(buffer[i], d[j]);
assert.strictEqual(d[j], buffer[i]);
i++;
}
});
req.on('end', common.mustCall(() => {
assert.strictEqual(bufferSize, measuredSize);
assert.strictEqual(measuredSize, bufferSize);
res.writeHead(200);
res.write('thanks');
res.end();
@ -64,7 +64,7 @@ server.listen(0, common.mustCall(() => {
let data = '';
res.on('data', (chunk) => data += chunk);
res.on('end', common.mustCall(() => {
assert.strictEqual('thanks', data);
assert.strictEqual(data, 'thanks');
}));
}));
req.end(buffer);