Skip to content

Commit

Permalink
test: use strictEqual in cwd-enoent
Browse files Browse the repository at this point in the history
Changed all references from assert.Equal() to assert.strictEqual().

PR-URL: #10077
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
  • Loading branch information
jdharmon authored and addaleax committed Dec 5, 2016
1 parent cdc2909 commit 7697aee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-cwd-enoent.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ proc.stdout.pipe(process.stdout);
proc.stderr.pipe(process.stderr);

proc.once('exit', common.mustCall(function(exitCode, signalCode) {
assert.equal(exitCode, 0);
assert.equal(signalCode, null);
assert.strictEqual(exitCode, 0);
assert.strictEqual(signalCode, null);
}));

0 comments on commit 7697aee

Please sign in to comment.