From 85d89bdd5a0c350cb689e64c7cfa5a3aef23e5fd Mon Sep 17 00:00:00 2001 From: Daniel Cousens Date: Mon, 15 Dec 2014 13:59:48 +1100 Subject: [PATCH] tests: remove unused parameter --- test/bip38.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/bip38.test.js b/test/bip38.test.js index f9e7400..decf26c 100644 --- a/test/bip38.test.js +++ b/test/bip38.test.js @@ -19,7 +19,7 @@ describe('bip38', function() { fixtures.invalid.forEach(function(f) { it('should throw ' + f.description, function() { assert.throws(function() { - bip38.decrypt(f.bip38, f.passphrase, f.address) + bip38.decrypt(f.bip38, f.passphrase) }, new RegExp(f.description, 'i')) }) })