8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f10c321 commit bffbf68Copy full SHA for bffbf68
test/parallel/test-crypto-stream.js
@@ -30,8 +30,10 @@ if (!common.hasFipsCrypto) {
30
// Create an md5 hash of "Hallo world"
31
var hasher1 = crypto.createHash('md5');
32
hasher1.pipe(new Stream2buffer(common.mustCall(function end(err, hash) {
33
- assert.equal(err, null);
34
- assert.equal(hash.toString('hex'), '06460dadb35d3d503047ce750ceb2d07');
+ assert.strictEqual(err, null);
+ assert.strictEqual(
35
+ hash.toString('hex'), '06460dadb35d3d503047ce750ceb2d07'
36
+ );
37
})));
38
hasher1.end('Hallo world');
39
0 commit comments