Skip to content

Commit

Permalink
Fix failing CI test
Browse files Browse the repository at this point in the history
  • Loading branch information
xmatthias committed Feb 2, 2020
1 parent e3cb5d2 commit 2b69e78
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_freqtradebot.py
Original file line number Diff line number Diff line change
Expand Up @@ -1145,11 +1145,11 @@ def test_handle_stoploss_on_exchange(mocker, default_conf, fee, caplog,
# Should not create new order
trade.stoploss_order_id = None
trade.is_open = False
stoploss_limit.reset_mock()
stoploss.reset_mock()
mocker.patch('freqtrade.exchange.Exchange.get_order')
mocker.patch('freqtrade.exchange.Exchange.stoploss_limit', stoploss_limit)
mocker.patch('freqtrade.exchange.Exchange.stoploss', stoploss)
assert freqtrade.handle_stoploss_on_exchange(trade) is False
assert stoploss_limit.call_count == 0
assert stoploss.call_count == 0


def test_handle_sle_cancel_cant_recreate(mocker, default_conf, fee, caplog,
Expand Down

0 comments on commit 2b69e78

Please sign in to comment.