tests: use strictEqual always

This commit is contained in:
Daniel Cousens 2015-05-07 11:29:20 +10:00
parent ab66c983af
commit ec9cea0cf1
19 changed files with 186 additions and 186 deletions

View file

@ -16,7 +16,7 @@ describe('Crypto', function () {
var data = new Buffer(f.hex, 'hex')
var actual = fn(data).toString('hex')
assert.equal(actual, expected)
assert.strictEqual(actual, expected)
})
})
})