Skip to content

Commit dfb2ab9

Browse files
committed
Fix spaces to increase readability
1 parent a7d8032 commit dfb2ab9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

roles/test_operator/tasks/stages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@
3535
start_with: cifmw_test_operator_{{ _stage_vars.type }}
3636
when: item.key.startswith(start_with)
3737
ansible.builtin.set_fact:
38-
stage_vars_dict: "{{ stage_vars_dict | combine({item.key: _stage_test_vars[item.key] | default(lookup('vars', item.key, default=omit))} ) }}"
38+
stage_vars_dict: "{{ stage_vars_dict | combine({item.key: _stage_test_vars[item.key] | default(lookup('vars', item.key, default=omit)) }) }}"
3939

4040
- name: Override specific type config
4141
vars:
4242
_stage_config: 'cifmw_test_operator_{{ _stage_vars.type }}_config'
4343
ansible.builtin.set_fact:
44-
stage_vars_dict: "{{ stage_vars_dict | combine({_stage_config: _stage_test_vars[_stage_config] | default(lookup('vars', _stage_config, default=omit))} ) }}"
44+
stage_vars_dict: "{{ stage_vars_dict | combine({_stage_config: _stage_test_vars[_stage_config] | default(lookup('vars', _stage_config, default=omit)) }) }}"
4545

4646
- name: "Call runner {{ _stage_vars.type }}"
4747
ansible.builtin.include_tasks: "runners/{{ _stage_vars.type }}_runner.yml"

0 commit comments

Comments
 (0)