Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/changelog.d/7569.test.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update component number for Modelithics v26
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def test_modelithics_inductor_list_count(self, lumped_design):
assert lumped_design.export_to_aedt.modelithics_capacitor_list_count == 2
assert info.value.args[0] == "The part library is not set to Modelithics"
lumped_design.export_to_aedt.part_libraries = PartLibraries.MODELITHICS
assert lumped_design.export_to_aedt.modelithics_inductor_list_count == 118
assert lumped_design.export_to_aedt.modelithics_inductor_list_count == 121

@pytest.mark.skipif(SKIP_MODELITHICS, reason="Modelithics is not installed.")
def test_modelithics_inductor_list(self, lumped_design):
Expand Down Expand Up @@ -175,7 +175,7 @@ def test_modelithics_capacitor_list_count(self, lumped_design):
assert lumped_design.export_to_aedt.modelithics_capacitor_list_count == first_modelithics_capacitor
assert info.value.args[0] == "The part library is not set to Modelithics"
lumped_design.export_to_aedt.part_libraries = PartLibraries.MODELITHICS
assert lumped_design.export_to_aedt.modelithics_capacitor_list_count == 146
assert lumped_design.export_to_aedt.modelithics_capacitor_list_count == 147

@pytest.mark.skipif(SKIP_MODELITHICS, reason="Modelithics is not installed.")
def test_modelithics_capacitor_list(self, lumped_design):
Expand Down Expand Up @@ -262,7 +262,7 @@ def test_modelithics_resistor_list_count(self, lumped_design):
assert lumped_design.export_to_aedt.modelithics_resistor_list_count == 2
assert info.value.args[0] == "The part library is not set to Modelithics"
lumped_design.export_to_aedt.part_libraries = PartLibraries.MODELITHICS
assert lumped_design.export_to_aedt.modelithics_resistor_list_count == 43
assert lumped_design.export_to_aedt.modelithics_resistor_list_count == 46

@pytest.mark.skipif(SKIP_MODELITHICS, reason="Modelithics is not installed.")
def test_modelithics_resistor_list(self, lumped_design):
Expand Down
Loading