Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
slawek87 committed Aug 29, 2015
1 parent a2eb82b commit 52b1ac6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ def test_appl(self):
yql_data = YQL.select('AAPL', '2014-01-10', '2014-01-10')

self.assertEqual(YQL.to_date('2014-01-10'), yql_data[0].get('date'))
self.assertEqual('74.57', yql_data[0].get('price'))
self.assertEqual('73.629744', yql_data[0].get('price'))

yql_data = YQL('AAPL', '2014-01-10', '2014-01-10')

self.assertEqual(YQL.to_date('2014-01-10'), yql_data[0].get('date'))
self.assertEqual('74.57', yql_data[0].get('price'))
self.assertEqual('73.629744', yql_data[0].get('price'))

0 comments on commit 52b1ac6

Please sign in to comment.