| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -30,8 +30,10 @@ if (!common.hasFipsCrypto) { | |||
| 30 | 30 | // Create an md5 hash of "Hallo world" | |
| 31 | 31 | var hasher1 = crypto.createHash('md5'); | |
| 32 | 32 | hasher1.pipe(new Stream2buffer(common.mustCall(function end(err, hash) { | |
| 33 | - assert.equal(err, null); | ||
| 34 | - assert.equal(hash.toString('hex'), '06460dadb35d3d503047ce750ceb2d07'); | ||
| 33 | + assert.strictEqual(err, null); | ||
| 34 | + assert.strictEqual( | ||
| 35 | + hash.toString('hex'), '06460dadb35d3d503047ce750ceb2d07' | ||
| 36 | + ); | ||
| 35 | 37 | }))); | |
| 36 | 38 | hasher1.end('Hallo world'); | |
| 37 | 39 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments