test: strictEqual in test-beforeexit-event.js

PR-URL: https://github.com/nodejs/node/pull/10004
Reviewed-by: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
This commit is contained in:
CodeTheInternet 2016-12-01 11:27:21 -06:00 committed by Michael Dawson
parent 6410534ec1
commit 7b4c598b29

View File

@ -37,6 +37,6 @@ function tryListen() {
}
process.on('exit', function() {
assert.equal(4, deaths);
assert.equal(3, revivals);
assert.strictEqual(4, deaths);
assert.strictEqual(3, revivals);
});