Fix csvfile test - quote file argument (#83751)

file was intended to be a string, not an undefined variable
pull/83769/head
Sloane Hertel 4 months ago committed by GitHub
parent d9f1866249
commit 97a60c1e86
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -6,7 +6,7 @@
- name: using modern syntax but missing keyword
set_fact:
this_will_error: "{{ lookup('csvfile', file=people.csv, delimiter=' ', col=1) }}"
this_will_error: "{{ lookup('csvfile', file='people.csv', delimiter=' ', col=1) }}"
ignore_errors: yes
register: modern_no_keyword

Loading…
Cancel
Save