Skip to content

Commit d962220

Browse files
committed
TST: Fix test for windows OS
1 parent d3530d6 commit d962220

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/plotting/test_frame.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3348,7 +3348,7 @@ def test_bar_numeric(self):
33483348
# Bar plot with numeric index have tick location values equal to index
33493349
# values
33503350
# GH: 11465
3351-
index = np.arange(10, 20)
3351+
index = np.arange(10, 20, dtype=np.int64)
33523352
df = pd.DataFrame(np.random.rand(10), index=np.arange(10, 20))
33533353
ax = df.plot.bar()
33543354
ticklocs = ax.xaxis.get_ticklocs()

0 commit comments

Comments
 (0)