From ab156b6ad7b216486a795008f977d934cb3621d2 Mon Sep 17 00:00:00 2001 From: Jan Smets Date: Tue, 8 Aug 2023 12:28:28 +0200 Subject: [PATCH] Increase bybit ohlcv_candle_limit to 1000 in tests --- tests/exchange/test_bybit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/exchange/test_bybit.py b/tests/exchange/test_bybit.py index d0d5114a1..a8c902fd6 100644 --- a/tests/exchange/test_bybit.py +++ b/tests/exchange/test_bybit.py @@ -26,7 +26,7 @@ async def test_bybit_fetch_funding_rate(default_conf, mocker): api_mock = MagicMock() api_mock.fetch_funding_rate_history = get_mock_coro(return_value=[]) exchange = get_patched_exchange(mocker, default_conf, id='bybit', api_mock=api_mock) - limit = 200 + limit = 1000 # Test fetch_funding_rate_history (current data) await exchange._fetch_funding_rate_history( pair='BTC/USDT:USDT',