We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f550df commit fb4b650Copy full SHA for fb4b650
test/parallel/test-crypto-hash-stream-pipe.js
@@ -14,7 +14,7 @@ var h = crypto.createHash('sha1');
14
var expect = '15987e60950cf22655b9323bc1e281f9c4aff47e';
15
16
s.pipe(h).on('data', common.mustCall(function(c) {
17
- assert.equal(c, expect);
+ assert.strictEqual(c, expect);
18
})).setEncoding('hex');
19
20
s.end('aoeu');
0 commit comments