summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanglewood <85772166+deeleeramone@users.noreply.github.com>2024-06-25 13:06:21 -0700
committerDanglewood <85772166+deeleeramone@users.noreply.github.com>2024-06-25 13:06:21 -0700
commit90ca9f1fc97e4ba4da7501e8a8407d6cadd76c40 (patch)
tree4fa15730d0fdf6c50b6460ac93b34d7608e2258d
parent1745577675f90133b02c861d969317cf0b517f5a (diff)
unused fetcher test
-rw-r--r--openbb_platform/providers/yfinance/tests/test_yfinance_fetchers.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/openbb_platform/providers/yfinance/tests/test_yfinance_fetchers.py b/openbb_platform/providers/yfinance/tests/test_yfinance_fetchers.py
index 2da41ff5b8a..0c5c6d7d931 100644
--- a/openbb_platform/providers/yfinance/tests/test_yfinance_fetchers.py
+++ b/openbb_platform/providers/yfinance/tests/test_yfinance_fetchers.py
@@ -15,7 +15,6 @@ from openbb_yfinance.models.currency_historical import YFinanceCurrencyHistorica
from openbb_yfinance.models.equity_historical import YFinanceEquityHistoricalFetcher
from openbb_yfinance.models.equity_profile import YFinanceEquityProfileFetcher
from openbb_yfinance.models.equity_quote import YFinanceEquityQuoteFetcher
-from openbb_yfinance.models.etf_historical import YFinanceEtfHistoricalFetcher
from openbb_yfinance.models.etf_info import YFinanceEtfInfoFetcher
from openbb_yfinance.models.futures_curve import YFinanceFuturesCurveFetcher
from openbb_yfinance.models.futures_historical import YFinanceFuturesHistoricalFetcher
@@ -234,20 +233,6 @@ def test_y_finance_available_fetcher(credentials=test_credentials):
@pytest.mark.record_http
-def test_y_finance_etf_historical_fetcher(credentials=test_credentials):
- """Test YFinanceEtfHistoricalFetcher."""
- params = {
- "symbol": "SPY",
- "start_date": date(2023, 1, 1),
- "end_date": date(2023, 6, 6),
- }
-
- fetcher = YFinanceEtfHistoricalFetcher()
- result = fetcher.test(params, credentials)
- assert result is None
-
-
-@pytest.mark.record_http
def test_y_finance_active_fetcher(credentials=test_credentials):
"""Test YFActiveFetcher."""
params = {}