[Tests] Added more tolerance to include 7.0.2

- Without changing the references
- test_pcb_print_simple_1
- test_panelize_1
This commit is contained in:
Salvador E. Tropea 2023-04-17 13:46:59 -03:00
parent b0da1851e7
commit 118864e851
2 changed files with 2 additions and 2 deletions

View File

@ -1624,7 +1624,7 @@ def test_panelize_1(test_dir):
prj = 'light_control'
ctx = context.TestContext(test_dir, prj, 'panelize_2')
ctx.run(extra=[])
ctx.compare_image(prj+'-panel.png')
ctx.compare_image(prj+'-panel.png', tol=100)
ctx.clean_up(keep_project=True)

View File

@ -129,7 +129,7 @@ def test_pcb_print_simple_1(test_dir):
ctx.run()
ctx.expect_out_file(prj+'-F_Cu_mono.png')
ctx.expect_out_file(prj+'-F_Cu_color.png')
ctx.compare_image(prj+'-F_Cu_color.png', height='100%')
ctx.compare_image(prj+'-F_Cu_color.png', height='100%', fuzz='10%', tol=50)
ctx.expect_out_file(prj+'-assembly_page_01.eps')
ctx.expect_out_file(prj+'-assembly_page_01.svg')
ctx.expect_out_file(prj+'-assembly.ps')