We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb489d7 commit c5e3387Copy full SHA for c5e3387
1 file changed
lib/mpl_toolkits/mplot3d/tests/test_axes3d.py
@@ -1,6 +1,7 @@
1
import functools
2
import itertools
3
import platform
4
+import sys
5
6
import pytest
7
@@ -115,7 +116,7 @@ def test_axes3d_repr():
115
116
117
118
@mpl3d_image_comparison(['axes3d_primary_views.png'], style='mpl20',
- tol=0.05 if platform.machine() == "arm64" else 0)
119
+ tol=0.05 if sys.platform == "darwin" else 0)
120
def test_axes3d_primary_views():
121
# (elev, azim, roll)
122
views = [(90, -90, 0), # XY
0 commit comments