test: convert assert.equal to assert.strictEqual

converts an instance of assert.equal in a file already mostly
updated to use assert.strictEqual

PR-URL: https://github.com/nodejs/node/pull/9925
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
Jonathan Darling 2016-12-01 10:28:44 -06:00 committed by James M Snell
parent 6eee34a168
commit 6ed0e8b49c

View File

@ -35,7 +35,7 @@ try {
assert.strictEqual(
SlowBuffer(buffer.kMaxLength).length, buffer.kMaxLength);
} catch (e) {
assert.equal(e.message, 'Array buffer allocation failed');
assert.strictEqual(e.message, 'Array buffer allocation failed');
}
// should work with number-coercible values