diff --git a/expected_workflows/flow_sequential_expected.py b/expected_workflows/flow_sequential_expected.py index 8612cd2..ef29ec6 100644 --- a/expected_workflows/flow_sequential_expected.py +++ b/expected_workflows/flow_sequential_expected.py @@ -13,14 +13,14 @@ logging.basicConfig(level=logging.INFO, logger = logging.getLogger(__name__) @temporalio.workflow.defn -class test_repo_test_branch_1234567890: +class test_repo_test_branch: @temporalio.workflow.run async def run(self, root_inputs: Dict[str, Any]) -> Dict[str, Any]: workflow_info = temporalio.workflow.info() workflow_output: Dict[str, Any] = { "workflow_id": workflow_info.workflow_id, "run_id": workflow_info.run_id, - "name": "test_repo_test_branch_1234567890", + "name": "test_repo_test_branch", "status": "in_progress", "blocks": [], "root_input": root_inputs