fix typo, refresh_tickers does not need a return value

This commit is contained in:
Matthias
2018-08-29 19:56:38 +02:00
parent 54ddd908e6
commit ffd4469c1d
3 changed files with 4 additions and 6 deletions

View File

@@ -581,10 +581,10 @@ def test_get_history(default_conf, mocker, caplog):
]
pair = 'ETH/BTC'
async def mock_cacndle_hist(pair, tick_interval, since_ms):
async def mock_candle_hist(pair, tick_interval, since_ms):
return pair, tick
exchange._async_get_candle_history = Mock(wraps=mock_cacndle_hist)
exchange._async_get_candle_history = Mock(wraps=mock_candle_hist)
# one_call calculation * 1.8 should do 2 calls
since = 5 * 60 * 500 * 1.8
print(f"since = {since}")