Skip to content

Commit 113f788

Browse files
authored
TST: fix up pandas_datareader downstream tests (#19490)
closes #18935
1 parent b5dd6a3 commit 113f788

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/test_downstream.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ def test_pandas_gbq(df):
8989
def test_pandas_datareader():
9090

9191
pandas_datareader = import_module('pandas_datareader') # noqa
92-
pandas_datareader.get_data_google('AAPL')
92+
pandas_datareader.DataReader(
93+
'F', 'quandl', '2017-01-01', '2017-02-01')
9394

9495

9596
def test_geopandas():

0 commit comments

Comments
 (0)