From 91c7787f4c963fe1983702418721809be0237db2 Mon Sep 17 00:00:00 2001 From: Wouter Overmeire Date: Tue, 12 Feb 2013 22:10:56 +0100 Subject: [PATCH] TST: avoid platform dependency, close #2854 --- pandas/tests/test_graphics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/tests/test_graphics.py b/pandas/tests/test_graphics.py index 27ac43100a9ed..89cc407daf3f4 100644 --- a/pandas/tests/test_graphics.py +++ b/pandas/tests/test_graphics.py @@ -308,7 +308,7 @@ def test_unsorted_index(self): ax = df.plot() l = ax.get_lines()[0] rs = l.get_xydata() - rs = Series(rs[:, 1], rs[:, 0], dtype=int) + rs = Series(rs[:, 1], rs[:, 0], dtype=np.int64) tm.assert_series_equal(rs, df.y) def _check_data(self, xp, rs):