1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-07-08 11:39:02 +00:00

Fix assignments in docker tests. (#57249)

This commit is contained in:
Felix Fontein 2019-05-31 23:47:53 +02:00 committed by GitHub
parent 1515afd92c
commit 7cd229aa97
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
23 changed files with 27 additions and 27 deletions

View file

@ -4,7 +4,7 @@
vname: "{{ name_prefix ~ '-basic' }}"
- name: Registering container name
set_fact:
vnames: "{{ vnames }} + [vname]"
vnames: "{{ vnames + [vname] }}"
####################################################################
## basic ###########################################################