Skip to content

Commit 67b45a4

Browse files
authored
Update test_design_import.py
1 parent 7dace38 commit 67b45a4

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tests/integration/test_design_import.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,11 @@ def test_design_import_simple_case(modeler: Modeler):
9494

9595

9696
def test_open_file(modeler: Modeler, tmp_path_factory: pytest.TempPathFactory):
97-
"""Test creation of a component, saving it to a file, and loading it again to a second component and make sure they have the same properties."""
97+
"""Test creation of a component, saving it to a file, and loading it again to a
98+
second component and make sure they have the same properties."""
9899

99-
car_design = "ComponentInstance_Test"
100-
design = modeler.create_design(car_design)
100+
design_name = "CarDesign_Test"
101+
design = modeler.create_design(design_name)
101102

102103
# Create a car
103104
car1 = design.add_component("Car1")

0 commit comments

Comments
 (0)