8000 BUG, TST: fix-_check_ticks_props by MarcoGorelli · Pull Request #34768 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

BUG, TST: fix-_check_ticks_props #34768

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Jun 16, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
pr number
  • Loading branch information
MarcoGorelli committed Jun 14, 2020
commit 642da78ad5658ed7621fec50364de80dbcf73e48
1 change: 1 addition & 0 deletions pandas/tests/plotting/test_frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -3351,6 +3351,7 @@ def test_colors_of_columns_with_same_name(self):
assert legend.get_color() == line.get_color()

def test_plot_with_rot(self):
# GH 34768
df = pd.DataFrame({"b": [0, 1, 0], "a": [1, 2, 3]})
ax = _check_plot_works(df.plot, rot=30)
ax.yaxis.set_tick_params(rotation=30)
Expand Down
0