summaryrefslogtreecommitdiffstats
path: root/openbb_platform/providers/fmp/tests/test_fmp_fetchers.py
diff options
context:
space:
mode:
Diffstat (limited to 'openbb_platform/providers/fmp/tests/test_fmp_fetchers.py')
-rw-r--r--openbb_platform/providers/fmp/tests/test_fmp_fetchers.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/openbb_platform/providers/fmp/tests/test_fmp_fetchers.py b/openbb_platform/providers/fmp/tests/test_fmp_fetchers.py
index 17992bd6946..42bfe949ccc 100644
--- a/openbb_platform/providers/fmp/tests/test_fmp_fetchers.py
+++ b/openbb_platform/providers/fmp/tests/test_fmp_fetchers.py
@@ -253,7 +253,7 @@ def test_fmp_world_news_fetcher(credentials=test_credentials):
@pytest.mark.record_http
def test_fmp_income_statement_growth_fetcher(credentials=test_credentials):
"""Test FMP income statement growth fetcher."""
- params = {"symbol": "AAPL"}
+ params = {"symbol": "AAPL", "limit": 10, "period": "annual"}
fetcher = FMPIncomeStatementGrowthFetcher()
result = fetcher.test(params, credentials)
@@ -263,7 +263,7 @@ def test_fmp_income_statement_growth_fetcher(credentials=test_credentials):
@pytest.mark.record_http
def test_fmp_balance_sheet_growth_fetcher(credentials=test_credentials):
"""Test FMP balance sheet growth fetcher."""
- params = {"symbol": "AAPL"}
+ params = {"symbol": "AAPL", "limit": 10, "period": "annual"}
fetcher = FMPBalanceSheetGrowthFetcher()
result = fetcher.test(params, credentials)
@@ -273,7 +273,7 @@ def test_fmp_balance_sheet_growth_fetcher(credentials=test_credentials):
@pytest.mark.record_http
def test_fmp_cash_flow_statement_growth_fetcher(credentials=test_credentials):
"""Test FMP cash flow statement growth fetcher."""
- params = {"symbol": "AAPL"}
+ params = {"symbol": "AAPL", "limit": 10, "period": "annual"}
fetcher = FMPCashFlowStatementGrowthFetcher()
result = fetcher.test(params, credentials)