test: fix argument order in assert.strictEqual

PR-URL: https://github.com/nodejs/node/pull/24594
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Shingo Inoue <leko.noor@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
This commit is contained in:
feng jianmei 2018-11-24 16:15:56 +09:00 committed by Rich Trott
parent 628f95503f
commit 46094e42c3

View File

@ -43,7 +43,7 @@ function testCwd(options, expectCode = 0, expectData) {
// Can't assert callback, as stayed in to API:
// _The 'exit' event may or may not fire after an error has occurred._
child.on('exit', function(code, signal) {
assert.strictEqual(expectCode, code);
assert.strictEqual(code, expectCode);
});
child.on('close', common.mustCall(function() {