summaryrefslogtreecommitdiffstats
path: root/awx_collection/tests/integration/targets/job_cancel
diff options
context:
space:
mode:
authorSeth Foster <fosterbseth@gmail.com>2021-04-29 17:58:41 +0200
committerSeth Foster <fosterbseth@gmail.com>2021-06-08 20:33:23 +0200
commit7a63785255e04808d5cb8ca330d2fee31190cd9f (patch)
tree1bd7c13fb083de0865ba57a900730a969e36f970 /awx_collection/tests/integration/targets/job_cancel
parentregex replace tower_*: to '' (diff)
downloadawx-7a63785255e04808d5cb8ca330d2fee31190cd9f.tar.xz
awx-7a63785255e04808d5cb8ca330d2fee31190cd9f.zip
more rename, mostly in test
Diffstat (limited to 'awx_collection/tests/integration/targets/job_cancel')
-rw-r--r--awx_collection/tests/integration/targets/job_cancel/tasks/main.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/awx_collection/tests/integration/targets/job_cancel/tasks/main.yml b/awx_collection/tests/integration/targets/job_cancel/tasks/main.yml
index d949610d98..254ea89ce7 100644
--- a/awx_collection/tests/integration/targets/job_cancel/tasks/main.yml
+++ b/awx_collection/tests/integration/targets/job_cancel/tasks/main.yml
@@ -1,6 +1,6 @@
---
- name: Launch a Job Template
- tower_job_launch:
+ job_launch:
job_template: "Demo Job Template"
register: job
@@ -9,7 +9,7 @@
- "job is changed"
- name: Cancel the job
- tower_job_cancel:
+ job_cancel:
job_id: "{{ job.id }}"
register: results
@@ -18,7 +18,7 @@
- results is changed
- name: Cancel an already canceled job (assert failure)
- tower_job_cancel:
+ job_cancel:
job_id: "{{ job.id }}"
fail_if_not_running: true
register: results
@@ -29,7 +29,7 @@
- results is failed
- name: Check module fails with correct msg
- tower_job_cancel:
+ job_cancel:
job_id: 9999999999
register: result
ignore_errors: true