diff --git a/test/api/sendTest.js b/test/api/sendTest.js index 97e44044..182d7eb2 100644 --- a/test/api/sendTest.js +++ b/test/api/sendTest.js @@ -57,7 +57,7 @@ describe('send test', function() { }, function(err, results) { assert.isNull(err); - cfg = results.config.config; + cfg = results.config; port = results.blockchain.address().port; cfg.exchanges.plugins.current.transfer = 'blockchain'; @@ -103,7 +103,7 @@ describe('send test', function() { .reply(200, payment_response); - var api = require('../../lib/atm-api'); + var api = require('../../lib/protocol/atm-api'); api.init(app, cfg); var params = { @@ -122,4 +122,4 @@ describe('send test', function() { }); }, 2000); }); -}); \ No newline at end of file +}); diff --git a/test/api/tickerTest.js b/test/api/tickerTest.js index f4bbf14b..93265480 100644 --- a/test/api/tickerTest.js +++ b/test/api/tickerTest.js @@ -48,7 +48,7 @@ describe('ticker test', function(){ }, function(err, results) { assert.isNull(err); - cfg = results.config.config; + cfg = results.config; cfg.exchanges.settings.commission = 1; @@ -92,7 +92,7 @@ describe('ticker test', function(){ .reply(200, { balance: 100000000, total_received: 100000000 }); // That's 1 BTC. - var api = require('../../lib/atm-api'); + var api = require('../../lib/protocol/atm-api'); api.init(app, cfg); // let ticker rate fetch finish... diff --git a/test/api/tradeTest.js b/test/api/tradeTest.js index 387d4d3a..c307be53 100644 --- a/test/api/tradeTest.js +++ b/test/api/tradeTest.js @@ -41,7 +41,7 @@ describe('trade test', function(){ beforeEach(function(done) { config.load(function(err, result) { assert.isNull(err); - cfg = result.config; + cfg = result; done(); }); }); @@ -52,7 +52,7 @@ describe('trade test', function(){ this.timeout(1000000); cfg.exchanges.plugins.trade = 'bitstamp'; - var api = require('../../lib/atm-api'); + var api = require('../../lib/protocol/atm-api'); api.init(app, cfg); // schedule two trades this should result in a single consolidated trade hitting the trading system