Skip to content

Commit 9991bcb

Browse files
codeVanatargos
authored andcommitted
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 eff85e6 commit 9991bcb

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‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ if (process.argv[2] === 'child'){
4848
varexpectedExitCode=7;
4949
varexpectedSignal=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)