File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -404,7 +404,7 @@ class Process(enum.Enum):
404404 IHP_SG13G2 = "ihp_sg13g2"
405405
406406 def __str__ (self ):
407- return f'{ self .name } '
407+ return f'{ self .value } '
408408
409409
410410class LockFile (pydantic .BaseModel ):
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ def test_example_config_parsing(self):
2525 config = Config .model_validate (config_dict )
2626 self .assertEqual (config .chipflow .project_name , "test-chip" )
2727 self .assertEqual (config .chipflow .silicon .package , "pga144" )
28- self .assertEqual (str (config .chipflow .silicon .process ), "GF130BCD " )
28+ self .assertEqual (str (config .chipflow .silicon .process ), "gf130bcd " )
2929
3030 def test_mock_config_parsing (self ):
3131 """Test that the mock chipflow.toml can be parsed with our Pydantic models."""
You can’t perform that action at this time.
0 commit comments