Skip to content

Commit eb6e8bb

Browse files
committed
increase error margin
1 parent 0a02c9f commit eb6e8bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/test_glyph_render.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def test_renderGlyph(backendName, surfaceClass, fontName, glyphName, location):
115115
outputPath = tmpOutputDir / fileName
116116
surface.saveImage(outputPath)
117117
diff = compareImages(expectedPath, outputPath)
118-
assert diff < 0.0001, diff
118+
assert diff < 0.00012, diff
119119

120120

121121
def test_pathCollector():
@@ -175,4 +175,4 @@ def test_vectorBackends(backendName, imageSuffix):
175175
# - CoreGraphics PDFs are weirdly different while looking the same
176176
# assert expectedPath.read_bytes() == outputPath.read_bytes()
177177
diff = compareImages(expectedPath, outputPath)
178-
assert diff < 0.0001, diff
178+
assert diff < 0.00012, diff

0 commit comments

Comments
 (0)