Skip to content

Commit 91c7787

Browse files
committed
TST: avoid platform dependency, close #2854
1 parent dad367e commit 91c7787

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/test_graphics.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ def test_unsorted_index(self):
308308
ax = df.plot()
309309
l = ax.get_lines()[0]
310310
rs = l.get_xydata()
311-
rs = Series(rs[:, 1], rs[:, 0], dtype=int)
311+
rs = Series(rs[:, 1], rs[:, 0], dtype=np.int64)
312312
tm.assert_series_equal(rs, df.y)
313313

314314
def _check_data(self, xp, rs):

0 commit comments

Comments
 (0)