Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fb0cb05

Browse files
authored
Merge pull request #31465 from apatard/test-inset-aarch64
lib/matplotlib/tests/test_inset.py: Fix tolerance on aarch64
2 parents e450468 + 8d4b92c commit fb0cb05

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/matplotlib/tests/test_inset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def test_inset_indicator_zorder():
9494

9595

9696
@image_comparison(['zoom_inset_connector_styles.png'], remove_text=True, style='mpl20',
97-
tol=0.024 if platform.machine() == 'arm64' else 0)
97+
tol=0.024 if platform.machine() in ['aarch64', 'arm64'] else 0)
9898
def test_zoom_inset_connector_styles():
9999
fig, axs = plt.subplots(2)
100100
for ax in axs:

0 commit comments

Comments
 (0)