diff --git a/test/unit/controllers/controllersSpec.js b/test/unit/controllers/controllersSpec.js index 94b26c236..c056246c8 100644 --- a/test/unit/controllers/controllersSpec.js +++ b/test/unit/controllers/controllersSpec.js @@ -210,7 +210,7 @@ describe("Unit: Controllers", function() { sinon.assert.callCount(spy, 1); sinon.assert.callCount(spy2, 0); sinon.assert.callCount(scope.loadTxs, 1); - spy.getCall(0).args[0].should.equal('1JqniWpWNA6Yvdivg3y9izLidETnurxRQm'); + spy.getCall(0).args[0].should.equal('mkfTyEk7tfgV611Z4ESwDDSZwhsZdbMpVy'); spy.getCall(0).args[1].should.equal(1000 * config.unitToSatoshi); (typeof spy.getCall(0).args[2]).should.equal('undefined'); }); @@ -219,7 +219,7 @@ describe("Unit: Controllers", function() { it('should handle big values in 100 BTC', function() { var old = config.unitToSatoshi; config.unitToSatoshi = 100000000;; - sendForm.address.$setViewValue('1JqniWpWNA6Yvdivg3y9izLidETnurxRQm'); + sendForm.address.$setViewValue('mkfTyEk7tfgV611Z4ESwDDSZwhsZdbMpVy'); sendForm.amount.$setViewValue(100); var spy = sinon.spy(scope.wallet, 'createTx'); scope.loadTxs = sinon.spy(); @@ -232,7 +232,7 @@ describe("Unit: Controllers", function() { it('should handle big values in 5000 BTC', function() { var old = config.unitToSatoshi; config.unitToSatoshi = 100000000;; - sendForm.address.$setViewValue('1JqniWpWNA6Yvdivg3y9izLidETnurxRQm'); + sendForm.address.$setViewValue('mkfTyEk7tfgV611Z4ESwDDSZwhsZdbMpVy'); sendForm.amount.$setViewValue(5000); var spy = sinon.spy(scope.wallet, 'createTx'); scope.loadTxs = sinon.spy();