Skip to content

Commit

Permalink
Correct flake8 errors (pydata#512)
Browse files Browse the repository at this point in the history
Signed-off-by: Gábor Lipták <[email protected]>
  • Loading branch information
gliptak authored and bashtage committed Apr 13, 2018
1 parent 14a1833 commit 561bf49
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions pandas_datareader/tests/test_iex_daily.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,16 @@ def test_multiple_symbols_2(self):
assert len(t) == 73

expected1 = a.loc["2017-02-09"]
tm.assert_almost_equal(expected1["close"], 130.36, check_less_precise=True)
tm.assert_almost_equal(expected1["high"], 130.38, check_less_precise=True)
tm.assert_almost_equal(expected1["close"], 130.36,
check_less_precise=True)
tm.assert_almost_equal(expected1["high"], 130.38,
check_less_precise=True)

expected2 = a.loc["2017-05-24"]
tm.assert_almost_equal(expected2["close"], 151.57, check_less_precise=True)
tm.assert_almost_equal(expected2["high"], 152.40, check_less_precise=True)
tm.assert_almost_equal(expected2["close"], 151.57,
check_less_precise=True)
tm.assert_almost_equal(expected2["high"], 152.40,
check_less_precise=True)

expected3 = t.loc["2017-02-09"]
assert expected3["close"] == 269.20
Expand Down

0 comments on commit 561bf49

Please sign in to comment.