Add space

This commit is contained in:
Matthias 2021-11-10 16:51:31 +01:00
parent d3d17f9f8b
commit e7d1630c92

View File

@ -321,7 +321,7 @@ def test_create_trade_no_stake_amount(default_conf_usdt, ticker_usdt, fee, mocke
@pytest.mark.parametrize('stake_amount,create,amount_enough,max_open_trades', [
(5.0, True, True, 99),
(0.04, True, False, 99), # Amount will be adjusted to min - which is 0.051
(0.04, True, False, 99), # Amount will be adjusted to min - which is 0.051
(0, False, True, 99),
(UNLIMITED_STAKE_AMOUNT, False, True, 0),
])