test: assert.equal -> assert.strictEqual

changes assert.equal to assert.strictEqual to ensure specificity

PR-URL: https://github.com/nodejs/node/pull/10065
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
This commit is contained in:
davidmarkclements 2016-12-01 13:24:40 -06:00 committed by Anna Henningsen
parent 4601d5a1af
commit ea79a57ca4
No known key found for this signature in database
GPG Key ID: D8B9F5AEAE84E4CF

View File

@ -30,8 +30,10 @@ if (!common.hasFipsCrypto) {
// Create an md5 hash of "Hallo world"
var hasher1 = crypto.createHash('md5');
hasher1.pipe(new Stream2buffer(common.mustCall(function end(err, hash) {
assert.equal(err, null);
assert.equal(hash.toString('hex'), '06460dadb35d3d503047ce750ceb2d07');
assert.strictEqual(err, null);
assert.strictEqual(
hash.toString('hex'), '06460dadb35d3d503047ce750ceb2d07'
);
})));
hasher1.end('Hallo world');