From 6d2383a0e1a3dad75f069728e7ff5c721cb26abf Mon Sep 17 00:00:00 2001 From: SET Date: Wed, 12 Aug 2020 12:24:00 -0300 Subject: [PATCH] Fixed test_int_bom_column_rename_xlsx Didn't take the new header return value --- 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 395bb1c3..21a9ab57 100644 --- a/tests/test_plot/test_int_bom.py +++ b/tests/test_plot/test_int_bom.py @@ -472,7 +472,7 @@ def test_int_bom_column_rename_xlsx(): ctx = context.TestContextSCH('test_int_bom_column_rename_xlsx', prj, 'int_bom_column_rename_xlsx', BOM_DIR) ctx.run() out = prj + '-bom.' + ext - rows, header = ctx.load_xlsx(out) + rows, header, sh_head = ctx.load_xlsx(out) assert header == KIBOM_RENAME_HEAD ref_column = header.index(REF_COLUMN_NAME_R) check_kibom_test_netlist(rows, ref_column, LINKS_GROUPS, LINKS_EXCLUDE, LINKS_COMPONENTS)