diff --git a/gso/utils/workflow_steps.py b/gso/utils/workflow_steps.py index 50f754a96a6b8ba263ce24ee49ae67d5f1f125f6..0b6071fd982d658a08d87552758b045b86167dc5 100644 --- a/gso/utils/workflow_steps.py +++ b/gso/utils/workflow_steps.py @@ -307,13 +307,13 @@ def remove_pe_from_sdp_mesh_real(subscription: dict[str, Any], tt_number: str, p return _update_sdp_mesh(subscription, tt_number, process_id, dry_run=False, verb="remove_pe_from_sdp_mesh") -@step("[DRY RUN] Configure SDP on the PE to all other Nokia PEs") +@step("[DRY RUN] Configure SDP on the PE to all other PEs") def update_sdp_single_pe_dry(subscription: dict[str, Any], tt_number: str, process_id: UUIDstr) -> State: """Perform a dry run of configuring SDP on a new PE router to all other NOKIA PE routers.""" return _update_sdp_single_pe(subscription, tt_number, process_id, dry_run=True) -@step("[FOR REAL] Configure SDP on the PE to all other Nokia PEs") +@step("[FOR REAL] Configure SDP on the PE to all other PEs") def update_sdp_single_pe_real(subscription: dict[str, Any], tt_number: str, process_id: UUIDstr) -> State: """Configure SDP on a new PE router to all other NOKIA PE routers.""" return _update_sdp_single_pe(subscription, tt_number, process_id, dry_run=False)