Browse Source

Address/HDNode: fix test descriptions

hk-custom-address
Daniel Cousens 11 years ago
parent
commit
943621f466
  1. 2
      test/address.js
  2. 2
      test/hdnode.js

2
test/address.js

@ -29,7 +29,7 @@ describe('Address', function() {
})
fixtures.invalid.fromBase58Check.forEach(function(f) {
it('throws on ' + f.descpription, function() {
it('throws on ' + f.description, function() {
assert.throws(function() {
Address.fromBase58Check(f.base58check)
}, new RegExp(f.exception))

2
test/hdnode.js

@ -136,7 +136,7 @@ describe('HDNode', function() {
})
fixtures.invalid.fromBuffer.forEach(function(f) {
it('throws on ' + f.string, function() {
it('throws on ' + f.hex, function() {
assert.throws(function() {
HDNode.fromHex(f.hex)
}, new RegExp(f.exception))

Loading…
Cancel
Save