Skip to content

Commit

Permalink
Merge pull request matplotlib#29417 from meeseeksmachine/auto-backpor…
Browse files Browse the repository at this point in the history
…t-of-pr-29409-on-v3.10.x

Backport PR matplotlib#29409 on branch v3.10.x (Fixed test case(test_axes.py) failing on ppc64le)
  • Loading branch information
QuLogic authored Jan 7, 2025
2 parents 8721632 + 0db1cce commit 19e4d4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/matplotlib/tests/test_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -9085,7 +9085,7 @@ def test_zorder_and_explicit_rasterization():


@image_comparison(["preset_clip_paths.png"], remove_text=True, style="mpl20",
tol=0.027 if platform.machine() == "arm64" else 0)
tol=0.027 if platform.machine() in ("arm64", "ppc64le") else 0)
def test_preset_clip_paths():
fig, ax = plt.subplots()

Expand Down

0 comments on commit 19e4d4d

Please sign in to comment.