Skip to content

Commit

Permalink
Need to be a little more foregiving with smaller images
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanhogg committed Feb 23, 2024
1 parent e71175e commit 44a65eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def test_diagrams(self):
asyncio.run(controller.run())
output = PIL.Image.open(output_path)
self.assertEqual(reference.size, output.size)
self.assertLess(image_diff(reference, output), 0.003)
self.assertLess(image_diff(reference, output), 0.005)
finally:
if output_path.exists():
output_path.unlink()

0 comments on commit 44a65eb

Please sign in to comment.