fixed broken test_get_liquidation_price

This commit is contained in:
Sam Germain 2022-02-11 04:00:50 -06:00 committed by Matthias
parent 7a79403d2c
commit 19a282ddb4
1 changed files with 7 additions and 7 deletions

View File

@ -3669,10 +3669,10 @@ def test_get_liquidation_price(mocker, default_conf):
exchange = get_patched_exchange(mocker, default_conf, api_mock)
liq_price = exchange.get_liquidation_price(
pair='NEAR/USDT:USDT',
open_rate=0.0,
open_rate=18.884,
is_short=False,
position=0.0,
wallet_balance=0.0,
position=0.8,
wallet_balance=0.8,
)
assert liq_price == 17.47
@ -3680,12 +3680,12 @@ def test_get_liquidation_price(mocker, default_conf):
exchange = get_patched_exchange(mocker, default_conf, api_mock)
liq_price = exchange.get_liquidation_price(
pair='NEAR/USDT:USDT',
open_rate=0.0,
open_rate=18.884,
is_short=False,
position=0.0,
wallet_balance=0.0,
position=0.8,
wallet_balance=0.8,
)
assert liq_price == 18.8133
assert liq_price == 17.540699999999998
ccxt_exceptionhandlers(
mocker,