From ab83f8ffe498bd5a5158ab7874583874e86ab1ea Mon Sep 17 00:00:00 2001
From: Daniel Cousens <github@dcousens.com>
Date: Tue, 28 Apr 2015 10:47:29 +1000
Subject: [PATCH] tests: no need to specify 'correctly'

---
 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 12ae2ce..57e8168 100644
--- a/test/bitcoin.core.js
+++ b/test/bitcoin.core.js
@@ -104,7 +104,7 @@ describe('Bitcoin-core', function () {
       if (!params.isPrivkey) return
       var keyPair = ECPair.fromWIF(string)
 
-      it('imports ' + string + ' correctly', function () {
+      it('imports ' + string, function () {
         assert.equal(keyPair.d.toHex(), hex)
         assert.equal(keyPair.compressed, params.isCompressed)
       })