From 0b58424f57e16fe4d47479af19e2a2c1bd187f06 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Fri, 7 Jan 2022 13:04:45 -0300 Subject: [PATCH] Fixed test_print_sch_svg_fail test for KiCad 6 (used .sch) --- tests/test_plot/test_print_sch.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_plot/test_print_sch.py b/tests/test_plot/test_print_sch.py index a2535cde..7582ccbf 100644 --- a/tests/test_plot/test_print_sch.py +++ b/tests/test_plot/test_print_sch.py @@ -60,7 +60,8 @@ def test_print_sch_svg_ok(test_dir): def test_print_sch_svg_fail(test_dir): prj = '3Rs' ctx = context.TestContext(test_dir, 'PrSCHFail_SVG', prj, 'print_sch_svg', PDF_DIR) - ctx.run(SVG_SCH_PRINT, no_board_file=True, extra=['-e', os.path.join(ctx.get_board_dir(), 'print_err.sch')]) + ctx.run(SVG_SCH_PRINT, no_board_file=True, extra=['-e', os.path.join(ctx.get_board_dir(), + 'print_err'+context.KICAD_SCH_EXT)]) ctx.clean_up()