Skip to content

Commit c309574

Browse files
authored
Merge pull request #818 from simongarisch/master
Fixed test_moex_stock_datareader
2 parents d2ef4e6 + b082e24 commit c309574

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas_datareader/tests/test_moex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def test_moex_stock_datareader(self):
2121
df = web.DataReader(
2222
["GAZP", "SIBN"], "moex", start="2019-12-26", end="2019-12-26"
2323
)
24-
assert df.size == 74
24+
assert len(df) == 2
2525
except HTTPError as e:
2626
pytest.skip(e)
2727

0 commit comments

Comments
 (0)