Skip to content

Commit

Permalink
fixed molecule test
Browse files Browse the repository at this point in the history
  • Loading branch information
sugetha24 committed Jul 12, 2024
1 parent 0eb4796 commit 615359e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@
arista.cvp.cv_facts_v3:
facts:
- tasks
regexp_filter: "{{ MOVE_DEVICE_RESULT.devices_deployed.taskIds[0] }}" # filtered by task id
regexp_filter: "{{ MOVE_DEVICE_RESULT.taskIds[0] }}" # filtered by task id
register: CV_FACTS_V3_RESULT

- name: Check cv_facts_v3 result
Expand All @@ -253,7 +253,7 @@

- name: Cancel Pending Tasks
arista.cvp.cv_task_v3:
tasks: "{{ MOVE_DEVICE_RESULT.devices_deployed.taskIds[0] }}"
tasks: "{{ MOVE_DEVICE_RESULT.taskIds[0] }}"
state: cancelled

# Running move_device to empty the container
Expand All @@ -270,5 +270,5 @@

- name: Cancel Pending Tasks
arista.cvp.cv_task_v3:
tasks: "{{ MOVE_DEVICE_RESULT.devices_deployed.taskIds[0] }}"
tasks: "{{ MOVE_DEVICE_RESULT.taskIds[0] }}"
state: cancelled

0 comments on commit 615359e

Please sign in to comment.