Skip to content

Commit d9291b5

Browse files
committed
TST: Fix test for windows OS
1 parent b0be580 commit d9291b5

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
@@ -3358,7 +3358,7 @@ def test_bar_numeric(self):
33583358
# Bar plot with numeric index have tick location values equal to index
33593359
# values
33603360
# GH: 11465
3361-
index = np.arange(10, 20)
3361+
index = np.arange(10, 20, dtype=np.int64)
33623362
df = pd.DataFrame(np.random.rand(10), index=np.arange(10, 20))
33633363
ax = df.plot.bar()
33643364
ticklocs = ax.xaxis.get_ticklocs()

0 commit comments

Comments
 (0)