Fix typo causing an implicit bug

This commit is contained in:
Matthias
2022-03-12 08:58:54 +01:00
parent 12c909d8a8
commit b9b5d749bb
2 changed files with 2 additions and 3 deletions

View File

@@ -79,8 +79,7 @@ def test_returns_latest_signal(ohlcv_history):
_STRATEGY.config['trading_mode'] = 'futures'
# Short signal get's ignored as can_short is not set.
assert _STRATEGY.get_entry_signal(
'ETH/BTC', '5m', mocked_history) == (None, None)
assert _STRATEGY.get_entry_signal('ETH/BTC', '5m', mocked_history) == (None, None)
_STRATEGY.can_short = True