Skip to content

Commit

Permalink
increase error margin
Browse files Browse the repository at this point in the history
  • Loading branch information
justvanrossum committed Nov 1, 2021
1 parent 0a02c9f commit eb6e8bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/test_glyph_render.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def test_renderGlyph(backendName, surfaceClass, fontName, glyphName, location):
outputPath = tmpOutputDir / fileName
surface.saveImage(outputPath)
diff = compareImages(expectedPath, outputPath)
assert diff < 0.0001, diff
assert diff < 0.00012, diff


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

0 comments on commit eb6e8bb

Please sign in to comment.