The Wayback Machine - https://web.archive.org/web/20250407172911/https://github.com/nodejs/node/commit/9991bcbada
Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Commit 9991bcb

Browse filesBrowse 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 eff85e6 commit 9991bcb
Copy full SHA for 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

Copy file name to clipboardexpand all lines: 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.