base58: fix missing exceptions

This commit is contained in:
Daniel Cousens 2014-05-28 13:29:01 +10:00
parent c9ad359520
commit 47ae862ae9
2 changed files with 7 additions and 2 deletions

View file

@ -18,7 +18,7 @@ describe('base58', function() {
it('throws on ' + f.description, function() {
assert.throws(function() {
base58.decode(f.string)
})
}, /Non-base58 character/)
})
})
})