From 52b1ac6720db09c4d8a9864b171506e90a8d3964 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C5=82awomir=20Kabik?= Date: Sat, 29 Aug 2015 13:41:06 +0200 Subject: [PATCH] fixed tests --- tests/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/tests.py b/tests/tests.py index 8eb2dee..51fa48d 100644 --- a/tests/tests.py +++ b/tests/tests.py @@ -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')) \ No newline at end of file + self.assertEqual('73.629744', yql_data[0].get('price')) \ No newline at end of file