Skip to content

Commit 9387900

Browse files
committed
moved all submit env var checking to submit function
1 parent c5b46e6 commit 9387900

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/test_steps_silicon.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,8 +269,7 @@ def test_run_cli_submit_missing_api_keys(self, mock_load_dotenv, mock_prepare):
269269
step.run_cli(args)
270270

271271
# Verify error message
272-
self.assertIn("CHIPFLOW_API_KEY_ID", str(cm.exception))
273-
self.assertIn("CHIPFLOW_API_KEY_SECRET", str(cm.exception))
272+
self.assertIn("CHIPFLOW_API_KEY", str(cm.exception))
274273
# Verify dotenv was loaded
275274
mock_load_dotenv.assert_called_once()
276275

0 commit comments

Comments
 (0)