8000 STY: fix whitespace in the tests by tacaswell · Pull Request #8301 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

STY: fix whitespace in the tests #8301

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 1 commit into from
Mar 15, 2017
Merged
Changes from all commits
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
6 changes: 4 additions & 2 deletions lib/matplotlib/tests/test_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1246,8 +1246,10 @@ def test_bar_tick_label_multiple():
ax.bar([1, 2.5], [1, 2], width=[0.2, 0.5], tick_label=['a', 'b'],
align='center')

5424 @image_comparison(baseline_images=['bar_tick_label_multiple_old_label_alignment'],
extensions=['png'])

@image_comparison(
baseline_images=['bar_tick_label_multiple_old_label_alignment'],
extensions=['png'])
def test_bar_tick_label_multiple_old_alignment():
# Test that the algnment for class is backward compatible
matplotlib.rcParams["ytick.alignment"] = "center"
Expand Down
0