test: fix argument order in assertions

PR-URL: https://github.com/nodejs/node/pull/23589
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
This commit is contained in:
Illescas, Ricardo 2018-10-12 11:19:56 -06:00 committed by Ruben Bridgewater
parent 134389142e
commit c8986bb7a3
No known key found for this signature in database
GPG Key ID: F07496B3EB3C1762

View File

@ -44,13 +44,13 @@ child.stdout.on('data', function(data) {
console.log(`child said: ${JSON.stringify(data)}`);
if (!gotHelloWorld) {
console.error('testing for hello world');
assert.strictEqual('hello world\r\n', data);
assert.strictEqual(data, 'hello world\r\n');
gotHelloWorld = true;
console.error('writing echo me');
child.stdin.write('echo me\r\n');
} else {
console.error('testing for echo me');
assert.strictEqual('echo me\r\n', data);
assert.strictEqual(data, 'echo me\r\n');
gotEcho = true;
child.stdin.end();
}