Skip to content

Commit f122ad8

Browse files
committed
TST: Fix test for windows OS
1 parent 7dc71d8 commit f122ad8

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
@@ -3276,7 +3276,7 @@ def test_bar_numeric(self):
32763276
# Bar plot with numeric index have tick location values equal to index
32773277
# values
32783278
# GH: 11465
3279-
index = np.arange(10, 20)
3279+
index = np.arange(10, 20, dtype=np.int64)
32803280
df = pd.DataFrame(np.random.rand(10), index=np.arange(10, 20))
32813281
ax = df.plot.bar()
32823282
ticklocs = ax.xaxis.get_ticklocs()

0 commit comments

Comments
 (0)