Fix couple more usdt tests which failed due to ticker prices causing roi being hit, but tests did not expect that to happen.

This commit is contained in:
Rokas Kupstys 2021-09-30 11:12:15 +03:00 committed by Sam Germain
parent 8961370269
commit c820db4c60

View File

@ -442,7 +442,7 @@ def ticker_sell_down():
def ticker_usdt(): def ticker_usdt():
return MagicMock(return_value={ return MagicMock(return_value={
'bid': 2.0, 'bid': 2.0,
'ask': 2.1, 'ask': 2.02,
'last': 2.0, 'last': 2.0,
}) })