From c820db4c60f6973554e232b52c06ed6e726dd8d0 Mon Sep 17 00:00:00 2001 From: Rokas Kupstys Date: Thu, 30 Sep 2021 11:12:15 +0300 Subject: [PATCH] Fix couple more usdt tests which failed due to ticker prices causing roi being hit, but tests did not expect that to happen. --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 9c500e05c..0e5e7c933 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -442,7 +442,7 @@ def ticker_sell_down(): def ticker_usdt(): return MagicMock(return_value={ 'bid': 2.0, - 'ask': 2.1, + 'ask': 2.02, 'last': 2.0, })