We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58a37f7 commit b2fbd38Copy full SHA for b2fbd38
tests/pathops_test.py
@@ -175,9 +175,9 @@ def test_transform(self):
175
)
176
expected.close()
177
178
- # rounding to 4 decimal digit precision, or else for some reasons
179
- # the test fails on linux-aarch64
180
- self.assert_paths_almost_equal(result, expected, ndigits=4)
+ # rounding to 3 decimal digit precision, or else for some reasons
+ # the test fails on >4 digits on linux-aarch64 and >3 digits on AVX platforms
+ self.assert_paths_almost_equal(result, expected, ndigits=3)
181
182
def test_pen_addComponent_missing_required_glyphSet(self):
183
path = Path()
0 commit comments