Skip to content

Commit

Permalink
test: fix the arguments order in assert.strictEqual
Browse files Browse the repository at this point in the history
I working at "Code and Learn" on Node fest 2018 in Japan.

Refs: nodejs#24431
  • Loading branch information
sigwyg committed Nov 24, 2018
1 parent ce890a0 commit 9053daf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-child-process-cwd.js
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 9053daf

Please sign in to comment.