Merge pull request #4282 from pan-long/patch-1

Fix a bug when compare sell_profit_offset
This commit is contained in:
Matthias
2021-02-02 08:22:38 +01:00
committed by GitHub
2 changed files with 5 additions and 5 deletions

View File

@@ -3159,9 +3159,9 @@ def test_sell_profit_only_enable_profit(default_conf, limit_buy_order, limit_buy
mocker.patch.multiple(
'freqtrade.exchange.Exchange',
fetch_ticker=MagicMock(return_value={
'bid': 0.00002172,
'ask': 0.00002173,
'last': 0.00002172
'bid': 0.00001172,
'ask': 0.00001173,
'last': 0.00001172
}),
buy=MagicMock(return_value=limit_buy_order_open),
get_fee=fee,