From 5d99e8c2cd0dc4f596ab3da4c233b9c7ad343763 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Wed, 24 May 2023 12:43:44 -0300 Subject: [PATCH] [Fixed][Tests] Name of the silk screen layers for KiCad 5 --- tests/test_plot/test_misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_plot/test_misc.py b/tests/test_plot/test_misc.py index 9fd6b428..5397b749 100644 --- a/tests/test_plot/test_misc.py +++ b/tests/test_plot/test_misc.py @@ -1712,7 +1712,7 @@ def test_definitions_1(test_dir): for la in ['B_Cu', 'F_Cu']: for copy in range(2): ctx.expect_out_file(f'{prj}-{la}_copper_{copy+1}.gbr') - for la in ['B_Silkscreen', 'F_Silkscreen']: + for la in ['B_SilkS', 'F_SilkS'] if context.ki5() else ['B_Silkscreen', 'F_Silkscreen']: for copy in range(2): ctx.expect_out_file(f'{prj}-{la}_silk_{copy+1}.gbr') ctx.clean_up()