Skip to content

Commit f670b05

Browse files
CodeTheInternetMylesBorins
authored andcommitted
test: strictEqual in test-beforeexit-event.js
PR-URL: #10004 Reviewed-by: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
1 parent 70b4d7d commit f670b05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/parallel/test-beforeexit-event.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ function tryListen() {
3737
}
3838

3939
process.on('exit', function() {
40-
assert.equal(4, deaths);
41-
assert.equal(3, revivals);
40+
assert.strictEqual(4, deaths);
41+
assert.strictEqual(3, revivals);
4242
});

0 commit comments

Comments
 (0)