From eb752f83165e06d7dae2856f23c567758441cadd Mon Sep 17 00:00:00 2001 From: Daniel Cousens Date: Tue, 18 Aug 2015 10:20:49 +1000 Subject: [PATCH] tests: fix bitcoin core address tests --- test/bitcoin.core.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/bitcoin.core.js b/test/bitcoin.core.js index 38bd439..ff6cbff 100644 --- a/test/bitcoin.core.js +++ b/test/bitcoin.core.js @@ -86,7 +86,7 @@ describe('Bitcoin-core', function () { var address = Address.fromBase58Check(string) assert.notEqual(allowedNetworks.indexOf(address.version), -1, 'Invalid network') - }, /Invalid (checksum|address length|network)/) + }, /(Invalid (checksum|network))|(too (short|long))/) }) }) })