Skip to content

Commit

Permalink
TST: Fix test_yahoo
Browse files Browse the repository at this point in the history
Uses non-weekend date for test, using a weekend date is ambiguous
  • Loading branch information
David Stephens committed Oct 1, 2017
1 parent 08a700e commit fb3ddeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas_datareader/tests/yahoo/test_yahoo.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def setup_class(cls):
def test_yahoo(self):
# Asserts that yahoo is minimally working
start = datetime(2010, 1, 1)
end = datetime(2013, 1, 27)
end = datetime(2013, 1, 25)

assert web.DataReader('F', 'yahoo', start, end)['Close'][-1] == 13.68

Expand Down

0 comments on commit fb3ddeb

Please sign in to comment.