Collection: Fix some tests that broke during the random name update

This commit is contained in:
Caleb Boylan
2020-03-19 09:40:48 -07:00
parent db7f0f9421
commit 1bd74a96d6
2 changed files with 3 additions and 3 deletions

View File

@@ -40,7 +40,7 @@
- name: Add Joe to workflow execute role
tower_role:
user: joe
user: "{{ username }}"
role: execute
workflow: test-role-workflow
state: present

View File

@@ -82,7 +82,7 @@
- name: Create a workflow job template
tower_workflow_template:
name: "{{ wfjt_name }}"
schema: [{"success": [{"job_template": "my-job-1"}], "job_template": "my-job-2"}]
schema: [{"success": [{"job_template": "{{ jt1_name }}"}], "job_template": "{{ jt2_name }}"}]
extra_vars: {'foo': 'bar', 'another-foo': {'barz': 'bar2'}}
register: result
@@ -104,7 +104,7 @@
tower_workflow_template:
name: "{{ wfjt_name }}"
organization: Non Existing Organization
schema: [{"success": [{"job_template": "my-job-1"}], "job_template": "my-job-2"}]
schema: [{"success": [{"job_template": "{{ jt1_name }}"}], "job_template": "{{ jt2_name }}"}]
register: result
ignore_errors: true