Fixed test_int_bom_column_rename_xlsx

Didn't take the new header return value
This commit is contained in:
SET 2020-08-12 12:24:00 -03:00
parent 45aaef29e6
commit 6d2383a0e1
1 changed files with 1 additions and 1 deletions

View File

@ -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)