Skip to content

Commit

Permalink
test: change assert.strict to assert.strictEqual()
Browse files Browse the repository at this point in the history
PR-URL: #9988
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
  • Loading branch information
ashita92 authored and evanlucas committed Jan 4, 2017
1 parent f1cc0a4 commit 815b5bd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/parallel/test-domain-with-abort-on-uncaught-exception.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,15 +125,15 @@ if (process.argv[2] === 'child') {
} else {
// By default, uncaught exceptions make node exit with an exit
// code of 7.
assert.equal(exitCode, 7);
assert.equal(signal, null);
assert.strictEqual(exitCode, 7);
assert.strictEqual(signal, null);
}
} else {
// If the top-level domain's error handler does not throw,
// the process must exit gracefully, whether or not
// --abort_on_uncaught_exception was passed on the command line
assert.equal(exitCode, 0);
assert.equal(signal, null);
assert.strictEqual(exitCode, 0);
assert.strictEqual(signal, null);
}
});
}
Expand Down

0 comments on commit 815b5bd

Please sign in to comment.