tests: no need to specify 'correctly'

This commit is contained in:
Daniel Cousens 2015-04-28 10:47:29 +10:00
parent 6d224f6910
commit ab83f8ffe4

View file

@ -104,7 +104,7 @@ describe('Bitcoin-core', function () {
if (!params.isPrivkey) return
var keyPair = ECPair.fromWIF(string)
it('imports ' + string + ' correctly', function () {
it('imports ' + string, function () {
assert.equal(keyPair.d.toHex(), hex)
assert.equal(keyPair.compressed, params.isCompressed)
})