From 504b6c24bcc76f88f24e23e98daddd20e7a9cd6e Mon Sep 17 00:00:00 2001
From: Dave Kerr <davekerrcode@gmail.com>
Date: Mon, 19 Feb 2018 17:10:44 -0500
Subject: [PATCH] fix failing address test by error-thrown assertion

---
 test/address.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/address.js b/test/address.js
index 78376ee..e9c8a80 100644
--- a/test/address.js
+++ b/test/address.js
@@ -66,7 +66,7 @@ describe('address', function () {
 
         assert.throws(function () {
           baddress.fromOutputScript(script)
-        }, new RegExp(f.script + ' ' + f.exception))
+        }, new RegExp(f.exception))
       })
     })
   })