Skip to content

Commit c99f0d9

Browse files
committed
Update error message expectation in test_parse_config_file_invalid_schema test
1 parent ce23127 commit c99f0d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_init.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def test_parse_config_file_invalid_schema(self):
124124
with self.assertRaises(ChipFlowError) as cm:
125125
_parse_config_file(config_path)
126126

127-
self.assertIn("Syntax error in `chipflow.toml`", str(cm.exception))
127+
self.assertIn("Validation error in chipflow.toml", str(cm.exception))
128128

129129
@mock.patch("chipflow_lib._ensure_chipflow_root")
130130
@mock.patch("chipflow_lib._parse_config_file")

0 commit comments

Comments
 (0)