From dfc32e6712bb1c1e7bcfbb55a9a8fe7257f551d1 Mon Sep 17 00:00:00 2001 From: Yemel Jardi Date: Tue, 30 Dec 2014 19:52:47 -0300 Subject: [PATCH] Fix typo and remove unnecessary test --- test/privatekey.js | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/test/privatekey.js b/test/privatekey.js index 6aaaa1d..7cae44b 100644 --- a/test/privatekey.js +++ b/test/privatekey.js @@ -35,18 +35,12 @@ describe('PrivateKey', function() { var a = new PrivateKey(Networks.testnet); should.exist(a); should.exist(a.bn); - var b = PrivateKey(Networks.testnet); - should.exist(b); - should.exist(b.bn); }); - it('should create a new random testnet private key with an empty data', function() { + it('should create a new random testnet private key with empty data', function() { var a = new PrivateKey(null, Networks.testnet); should.exist(a); should.exist(a.bn); - var b = PrivateKey(null, Networks.testnet); - should.exist(b); - should.exist(b.bn); }); it('should create a private key from WIF string', function() {