Skip to content

Commit a815a23

Browse files
codeVanaevanlucas
authored andcommittedJan 4, 2017
test: improve domain-top-level-error-handler-throw
Use assert.strictEqual instead of assert.equal. PR-URL: #9950 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Rich Trott <[email protected]>
1 parent 3448e8e commit a815a23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎test/parallel/test-domain-top-level-error-handler-throw.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ if (process.argv[2] === 'child') {
4848
var expectedExitCode = 7;
4949
var expectedSignal = null;
5050

51-
assert.equal(exitCode, expectedExitCode);
52-
assert.equal(signal, expectedSignal);
51+
assert.strictEqual(exitCode, expectedExitCode);
52+
assert.strictEqual(signal, expectedSignal);
5353
});
5454
}
5555
}

0 commit comments

Comments
 (0)
Please sign in to comment.