Fix test missing assert statement

This commit is contained in:
Matthias 2022-02-17 19:37:24 +01:00
parent d9d9867a54
commit de8d789962
2 changed files with 2 additions and 15 deletions

View File

@ -148,14 +148,7 @@ def test_stoploss_order_dry_run_binance(default_conf, mocker):
(1501, 1499, 1501, "sell"), (1501, 1499, 1501, "sell"),
(1499, 1501, 1499, "buy") (1499, 1501, 1499, "buy")
]) ])
def test_stoploss_adjust_binance( def test_stoploss_adjust_binance(mocker, default_conf, sl1, sl2, sl3, side):
mocker,
default_conf,
sl1,
sl2,
sl3,
side
):
exchange = get_patched_exchange(mocker, default_conf, id='binance') exchange = get_patched_exchange(mocker, default_conf, id='binance')
order = { order = {
'type': 'stop_loss_limit', 'type': 'stop_loss_limit',

View File

@ -310,10 +310,9 @@ def test_load_leverage_tiers_okx(default_conf, mocker, markets):
exchange.margin_mode = MarginMode.ISOLATED exchange.margin_mode = MarginMode.ISOLATED
exchange.markets = markets exchange.markets = markets
# Initialization of load_leverage_tiers happens as part of exchange init. # Initialization of load_leverage_tiers happens as part of exchange init.
exchange._leverage_tiers == { assert exchange._leverage_tiers == {
'ADA/USDT:USDT': [ 'ADA/USDT:USDT': [
{ {
'tier': 1,
'min': 0, 'min': 0,
'max': 500, 'max': 500,
'mmr': 0.02, 'mmr': 0.02,
@ -321,7 +320,6 @@ def test_load_leverage_tiers_okx(default_conf, mocker, markets):
'maintAmt': None 'maintAmt': None
}, },
{ {
'tier': 2,
'min': 501, 'min': 501,
'max': 1000, 'max': 1000,
'mmr': 0.025, 'mmr': 0.025,
@ -329,7 +327,6 @@ def test_load_leverage_tiers_okx(default_conf, mocker, markets):
'maintAmt': None 'maintAmt': None
}, },
{ {
'tier': 3,
'min': 1001, 'min': 1001,
'max': 2000, 'max': 2000,
'mmr': 0.03, 'mmr': 0.03,
@ -339,7 +336,6 @@ def test_load_leverage_tiers_okx(default_conf, mocker, markets):
], ],
'ETH/USDT:USDT': [ 'ETH/USDT:USDT': [
{ {
'tier': 1,
'min': 0, 'min': 0,
'max': 2000, 'max': 2000,
'mmr': 0.01, 'mmr': 0.01,
@ -347,7 +343,6 @@ def test_load_leverage_tiers_okx(default_conf, mocker, markets):
'maintAmt': None 'maintAmt': None
}, },
{ {
'tier': 2,
'min': 2001, 'min': 2001,
'max': 4000, 'max': 4000,
'mmr': 0.015, 'mmr': 0.015,
@ -355,7 +350,6 @@ def test_load_leverage_tiers_okx(default_conf, mocker, markets):
'maintAmt': None 'maintAmt': None
}, },
{ {
'tier': 3,
'min': 4001, 'min': 4001,
'max': 8000, 'max': 8000,
'mmr': 0.02, 'mmr': 0.02,