From 9383d8e8d3d4dcdf370f6fb2e8e08a2cbebb9587 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Sat, 13 Dec 2014 12:10:39 -0300 Subject: [PATCH] fix mocha tests --- test/TxProposal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/TxProposal.js b/test/TxProposal.js index d39040e26..7fca334b2 100644 --- a/test/TxProposal.js +++ b/test/TxProposal.js @@ -353,7 +353,7 @@ describe('TxProposal', function() { txp.getSignersPubKeys()[0].length.should.equal(1); txp.addSignature('pepe', [SIG1]); - txp.getSignersPubKeys()[0].length.should.equal(2); + txp.getSignersPubKeys(true)[0].length.should.equal(2); var keys = txp.getSignersPubKeys()[0]; var keysSorted = _.clone(keys).sort();