From 7f29fa1ecd0d1b17c7b1936db92f2b8da855a371 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Wed, 13 Jul 2022 09:25:02 -0300 Subject: [PATCH] [Tests] Fixed test_import_7 - It used a test case that didn't really pass the DRC --- tests/test_plot/test_misc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_plot/test_misc.py b/tests/test_plot/test_misc.py index 288b24e6..9d5e9f43 100644 --- a/tests/test_plot/test_misc.py +++ b/tests/test_plot/test_misc.py @@ -844,10 +844,10 @@ def test_import_6(test_dir): @pytest.mark.skipif(context.ki5(), reason="too slow on KiCad 5") def test_import_7(test_dir): """ Import a preflight """ - prj = 'test_v5' + prj = '3Rs' ctx = context.TestContext(test_dir, prj, 'import_test_7') ctx.run(extra=[]) - ctx.expect_out_file('test_v5-drc.txt') + ctx.expect_out_file('3Rs-drc.txt') ctx.clean_up()