From 0db1cce4cd0361463fbbd5adb2fe44a830734a88 Mon Sep 17 00:00:00 2001 From: Tim Hoffmann <2836374+timhoffm@users.noreply.github.com> Date: Mon, 6 Jan 2025 19:46:35 +0100 Subject: [PATCH] Backport PR #29409: Fixed test case(test_axes.py) failing on ppc64le --- lib/matplotlib/tests/test_axes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/matplotlib/tests/test_axes.py b/lib/matplotlib/tests/test_axes.py index 618e8462c340..575945cf5ff4 100644 --- a/lib/matplotlib/tests/test_axes.py +++ b/lib/matplotlib/tests/test_axes.py @@ -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()