Skip to content

Commit 4022579

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 <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
1 parent d3edaa3 commit 4022579

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
@@ -45,8 +45,8 @@ if (process.argv[2] === 'child') {
4545
var expectedExitCode = 7;
4646
var expectedSignal = null;
4747

48-
assert.equal(exitCode, expectedExitCode);
49-
assert.equal(signal, expectedSignal);
48+
assert.strictEqual(exitCode, expectedExitCode);
49+
assert.strictEqual(signal, expectedSignal);
5050
});
5151
}
5252
}

0 commit comments

Comments
 (0)