diff --git a/test/integration/server.js b/test/integration/server.js index 0e0a223..74f14f3 100644 --- a/test/integration/server.js +++ b/test/integration/server.js @@ -1267,7 +1267,6 @@ describe('Copay server', function() { server.createTx(txOpts, function(err, txp) { should.not.exist(err); should.exist(txp); - helpers.stubBroadcastFail(); var signatures = helpers.clientSign(txp, TestData.copayers[0].xPrivKey); server.signTx({ txProposalId: txp.id, @@ -1276,6 +1275,7 @@ describe('Copay server', function() { should.not.exist(err); should.exist(txp); txp.isAccepted().should.be.true; + txp.isBroadcasted().should.be.false; txpid = txp.id; done(); });