Skip to content

Commit f072c05

Browse files
committed
TST: Fix test for windows OS
1 parent 2e5e997 commit f072c05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/plotting/test_frame.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3282,7 +3282,7 @@ def test_bar_numeric(self):
32823282
# Bar plot with numeric index have tick location values equal to index
32833283
# values
32843284
# GH: 11465
3285-
index = np.arange(10, 20)
3285+
index = np.arange(10, 20, dtype=np.int64)
32863286
df = pd.DataFrame(np.random.rand(10), index=np.arange(10, 20))
32873287
ax = df.plot.bar()
32883288
ticklocs = ax.xaxis.get_ticklocs()

0 commit comments

Comments
 (0)