Skip to content

Commit 820b0ba

Browse files
fix docstrings
1 parent 00ff398 commit 820b0ba

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/integration/test_design.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4090,7 +4090,7 @@ def test_combine_merge(modeler: Modeler):
40904090

40914091

40924092
def test_faces_get_named_selections(modeler: Modeler):
4093-
# Test getting named selections associated with faces
4093+
"""Test getting named selections associated with faces."""
40944094
design = modeler.create_design("faces_named_selections")
40954095
box = design.extrude_sketch("box", Sketch().box(Point2D([0, 0]), 1, 1), 1)
40964096

@@ -4114,7 +4114,7 @@ def test_faces_get_named_selections(modeler: Modeler):
41144114

41154115

41164116
def test_body_get_named_selections(modeler: Modeler):
4117-
# Test getting named selections associated with bodies
4117+
"""Test getting named selections associated with bodies."""
41184118
design = modeler.create_design("body_named_selections")
41194119
box1 = design.extrude_sketch("box1", Sketch().box(Point2D([0, 0]), 1, 1), 1)
41204120
box2 = design.extrude_sketch("box2", Sketch().box(Point2D([2, 2]), 1, 1), 1)
@@ -4137,7 +4137,7 @@ def test_body_get_named_selections(modeler: Modeler):
41374137

41384138

41394139
def test_beam_get_named_selections(modeler: Modeler):
4140-
# Test getting named selections associated with beams
4140+
"""Test getting named selections associated with beams."""
41414141
design = modeler.create_design("beam_named_selections")
41424142
profile = design.add_beam_circular_profile("profile1", Distance(0.1, UNITS.m))
41434143
beam1 = design.create_beam(Point3D([0, 0, 0]), Point3D([1, 0, 0]), profile)
@@ -4161,7 +4161,7 @@ def test_beam_get_named_selections(modeler: Modeler):
41614161

41624162

41634163
def test_vertices_get_named_selections(modeler: Modeler):
4164-
# Test getting named selections associated with vertices
4164+
"""Test getting named selections associated with vertices."""
41654165
design = modeler.create_design("vertex_named_selections")
41664166
box = design.extrude_sketch("box", Sketch().box(Point2D([0, 0]), 1, 1), 1)
41674167

@@ -4193,7 +4193,7 @@ def test_vertices_get_named_selections(modeler: Modeler):
41934193

41944194

41954195
def test_components_get_named_selections(modeler: Modeler):
4196-
# Test getting named selections associated with components
4196+
"""Test getting named selections associated with components."""
41974197
design = modeler.create_design("component_named_selections")
41984198
comp1 = design.add_component("Component1")
41994199
comp2 = design.add_component("Component2")
@@ -4217,7 +4217,7 @@ def test_components_get_named_selections(modeler: Modeler):
42174217

42184218

42194219
def test_design_point_get_named_selections(modeler: Modeler):
4220-
# Test getting named selections associated with design points
4220+
"""Test getting named selections associated with design points."""
42214221
design = modeler.create_design("design_point_named_selections")
42224222
dp1 = design.add_design_point("DesignPoint1", Point3D([0, 0, 0]))
42234223
dp2 = design.add_design_point("DesignPoint2", Point3D([1, 1, 1]))

0 commit comments

Comments
 (0)