Compare >= instead of =

This commit is contained in:
Matthias
2019-10-18 19:36:04 +02:00
parent 3208f30c30
commit c649f9844e
2 changed files with 3 additions and 3 deletions

View File

@@ -1449,8 +1449,8 @@ def test_tsl_on_exchange_compatible_with_edge(mocker, edge_conf, fee, caplog,
# setting stoploss
freqtrade.strategy.stoploss = -0.02
# setting stoploss_on_exchange_interval to -1 second since this test runs fast
freqtrade.strategy.order_types['stoploss_on_exchange_interval'] = -1
# setting stoploss_on_exchange_interval to 0 seconds
freqtrade.strategy.order_types['stoploss_on_exchange_interval'] = 0
patch_get_signal(freqtrade)