Skip to content

Commit

Permalink
TST: Fix test for windows OS
Browse files Browse the repository at this point in the history
  • Loading branch information
nrebena committed Jun 13, 2020
1 parent 51b25a2 commit 8230467
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/tests/plotting/test_frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -3382,7 +3382,7 @@ def test_bar_numeric(self):
# Bar plot with numeric index have tick location values equal to index
# values
# GH: 11465
index = np.arange(10, 20)
index = np.arange(10, 20, dtype=np.int64)
df = pd.DataFrame(np.random.rand(10), index=np.arange(10, 20))
ax = df.plot.bar()
ticklocs = ax.xaxis.get_ticklocs()
Expand Down

0 comments on commit 8230467

Please sign in to comment.