mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 18:23:55 +00:00
Fix async test
This commit is contained in:
parent
280ead7bdb
commit
e654b76bc8
|
@ -584,11 +584,15 @@ async def test_async_get_candles_history(default_conf, mocker):
|
|||
async def async_fetch_ohlcv(pair, timeframe, since):
|
||||
return tick
|
||||
|
||||
async def async_load_markets():
|
||||
return {}
|
||||
|
||||
exchange = get_patched_exchange(mocker, default_conf)
|
||||
# Monkey-patch async function
|
||||
exchange._api_async.fetch_ohlcv = async_fetch_ohlcv
|
||||
|
||||
exchange = Exchange(default_conf)
|
||||
exchange._api_async.load_markets = async_load_markets
|
||||
|
||||
pairs = ['ETH/BTC', 'XRP/BTC']
|
||||
res = await exchange.async_get_candles_history(pairs, "5m")
|
||||
assert type(res) is list
|
||||
|
|
Loading…
Reference in New Issue
Block a user