From 36a01ee038df84f11146cff43dbbe986814c3626 Mon Sep 17 00:00:00 2001 From: SET Date: Tue, 11 Aug 2020 18:28:38 -0300 Subject: [PATCH] Fixed interference between test patterns. KIBOM_TEST_HEAD_TOL, wasn't cloned. --- tests/test_plot/test_int_bom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_plot/test_int_bom.py b/tests/test_plot/test_int_bom.py index b9b78e39..d7af256e 100644 --- a/tests/test_plot/test_int_bom.py +++ b/tests/test_plot/test_int_bom.py @@ -65,7 +65,7 @@ COMP_COLUMN_NAME = 'Row' COMP_COLUMN_NAME_R = 'Renglón' KIBOM_TEST_HEAD = [COMP_COLUMN_NAME, 'Description', 'Part', REF_COLUMN_NAME, 'Value', 'Footprint', QTY_COLUMN_NAME, 'Datasheet', 'Config'] -KIBOM_TEST_HEAD_TOL = KIBOM_TEST_HEAD +KIBOM_TEST_HEAD_TOL = [c for c in KIBOM_TEST_HEAD] KIBOM_TEST_HEAD_TOL.insert(-1, 'Tolerance') KIBOM_RENAME_HEAD = [COMP_COLUMN_NAME_R, REF_COLUMN_NAME_R, 'Componente', 'Valor', 'Código Digi-Key', 'Cantidad por PCB'] CONN_HEAD = [COMP_COLUMN_NAME, 'Description', 'Part', REF_COLUMN_NAME, 'Value', 'Footprint', QTY_COLUMN_NAME, 'Datasheet']