Skip to content

Commit

Permalink
meshing error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
svandenb-dev committed Jan 14, 2025
1 parent dea5354 commit 49d939b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/pyedb/dotnet/edb.py
Original file line number Diff line number Diff line change
Expand Up @@ -4564,6 +4564,7 @@ def create_model_for_arbitrary_wave_ports(
port_poly = cloned_edb.modeler.create_polygon(
main_shape=void_info[0].polygon_data._edb_object, layer_name="ref", net_name="GND"
)
port_poly.scale(1.05)
pec_poly = cloned_edb.modeler.create_polygon(
main_shape=port_poly.polygon_data._edb_object, layer_name="port_pec", net_name="GND"
)
Expand Down
2 changes: 1 addition & 1 deletion tests/legacy/system/test_edb.py
Original file line number Diff line number Diff line change
Expand Up @@ -1723,7 +1723,7 @@ def test_workflow(self, edb_examples):
assert path_bom.exists()
edbapp.close()

def test_create_port_ob_component_no_ref_pins_in_component(self, edb_examples):
def test_create_port_on_component_no_ref_pins_in_component(self, edb_examples):
from pyedb.generic.constants import SourceType

edbapp = edb_examples.get_no_ref_pins_component()
Expand Down

0 comments on commit 49d939b

Please sign in to comment.