Skip to content

Commit 6bbaa29

Browse files
committed
TST: Fix test for windows OS
1 parent dd69794 commit 6bbaa29

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
@@ -3395,7 +3395,7 @@ def test_bar_numeric(self):
33953395
# Bar plot with numeric index have tick location values equal to index
33963396
# values
33973397
# GH: 11465
3398-
index = np.arange(10, 20)
3398+
index = np.arange(10, 20, dtype=np.int64)
33993399
df = pd.DataFrame(np.random.rand(10), index=np.arange(10, 20))
34003400
ax = df.plot.bar()
34013401
ticklocs = ax.xaxis.get_ticklocs()

0 commit comments

Comments
 (0)