Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
timkpaine committed Aug 29, 2018
1 parent d12000a commit 6c155b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_stocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def test_statsDF(self):
with patch('requests.get') as mock:
mock.return_value = MagicMock()
mock.return_value.status_code = 200
mock.return_value.json = MagicMock(return_value=[])
mock.return_value.json = MagicMock(return_value=[{'financials': [{'reportDate': 1}], 'symbol': 'aapl'}])
stockStatsDF('test')

def test_financials(self):
Expand Down

0 comments on commit 6c155b8

Please sign in to comment.