Skip to content

Commit

Permalink
Update engine test to pass DeviaVir#1178
Browse files Browse the repository at this point in the history
Can't fool Travis 🔨
  • Loading branch information
defkev committed Jan 22, 2018
1 parent 542d588 commit 8f2e97a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/lib/engine.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,11 @@ function createEngine(currency_amount, buy_pct, buy_max_amt, order_type, held_as
}

var fake_return = {
"conf": {},
"conf": {
output: {
api: {}
}
},
"exchanges.test_exchange" : {
getProducts: function() { return [fake_product] },
getQuote: function(product, callback){ callback(null, { bid: fake_bid, ask: fake_ask}) },
Expand Down

0 comments on commit 8f2e97a

Please sign in to comment.