Skip to content

Commit

Permalink
test: strictEqual in test-beforeexit-event.js
Browse files Browse the repository at this point in the history
PR-URL: #10004
Reviewed-by: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
  • Loading branch information
CodeTheInternet authored and addaleax committed Dec 8, 2016
1 parent b71d3fd commit eeab546
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-beforeexit-event.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});

0 comments on commit eeab546

Please sign in to comment.