From 943621f4663b20ef5dd7432243a76209f740987a Mon Sep 17 00:00:00 2001 From: Daniel Cousens Date: Wed, 4 Jun 2014 15:30:53 +1000 Subject: [PATCH] Address/HDNode: fix test descriptions --- test/address.js | 2 +- test/hdnode.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/address.js b/test/address.js index 9ab99ab..4e09322 100644 --- a/test/address.js +++ b/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)) diff --git a/test/hdnode.js b/test/hdnode.js index 71a87c7..02ee85f 100644 --- a/test/hdnode.js +++ b/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))