Browse Source

cleaner code

activeAddress
Ivan Socolsky 10 years ago
parent
commit
15b79bfd79
  1. 15
      test/integration.js

15
test/integration.js

@ -1231,14 +1231,10 @@ describe('Copay server', function() {
txp.isBroadcasted().should.be.true;
txp.txid.should.equal('999');
_.keys(txp.actions).length.should.equal(2);
next();
});
},
],
function() {
done();
});
},
]);
});
it('tx proposals should accept as many rejections as possible without finally rejecting', function(done) {
@ -1315,13 +1311,10 @@ describe('Copay server', function() {
txp.isRejected().should.be.true;
txp.isAccepted().should.be.false;
_.keys(txp.actions).length.should.equal(2);
next();
});
},
],
function() {
done();
});
},
]);
});
});

Loading…
Cancel
Save