Skip to content

Commit

Permalink
[Tests][Fixed] New get_columns call
Browse files Browse the repository at this point in the history
  • Loading branch information
set-soft committed Feb 26, 2025
1 parent 131e40c commit bbf80a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_plot/test_misc_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from kibot.pre_base import BasePreFlight
from kibot.out_base import BaseOutput
from kibot.gs import GS
from kibot.kiplot import load_actions, _import, load_board, generate_makefile
from kibot.kiplot import load_actions, _import, load_board, generate_makefile, get_columns
from kibot.dep_downloader import search_as_plugin
from kibot.registrable import RegOutput, RegFilter
from kibot.misc import (WRONG_INSTALL, BOM_ERROR, DRC_ERROR, ERC_ERROR, PDF_PCB_PRINT, KICAD2STEP_ERR)
Expand Down Expand Up @@ -223,7 +223,7 @@ def test_bom_no_sch():
# Create an ibom object
GS.sch = None
out = RegOutput.get_class_for('bom')()
(columns, extra) = out.options._get_columns()
(columns, extra) = get_columns()
assert columns == ColumnList.COLUMNS_DEFAULT
out = RegOutput.get_class_for('kibom')()
options = out.options()
Expand Down

0 comments on commit bbf80a1

Please sign in to comment.