From ff1b230f714b5fc8498650d41b252bfaf0670c05 Mon Sep 17 00:00:00 2001 From: Manthan Nagvekar Date: Mon, 6 Jan 2025 12:22:50 +0530 Subject: [PATCH] fix for ppc64le testcase --- 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 beac9850539e..0dbb546b8acd 100644 --- a/lib/matplotlib/tests/test_axes.py +++ b/lib/matplotlib/tests/test_axes.py @@ -9134,7 +9134,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()