diff options
author | Sloane Hertel <19572925+s-hertel@users.noreply.github.com> | 2024-08-08 19:06:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-08 19:06:53 +0200 |
commit | 97a60c1e86eebaef3b28dbb84e62fd6d790619fe (patch) | |
tree | 603a17a98f6c1f751c00213f5afe4f3784841edf /test/integration | |
parent | Deprecate remaining safe evals (#83293) (diff) | |
download | ansible-97a60c1e86eebaef3b28dbb84e62fd6d790619fe.tar.xz ansible-97a60c1e86eebaef3b28dbb84e62fd6d790619fe.zip |
Fix csvfile test - quote file argument (#83751)
file was intended to be a string, not an undefined variable
Diffstat (limited to 'test/integration')
-rw-r--r-- | test/integration/targets/lookup_csvfile/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/targets/lookup_csvfile/tasks/main.yml b/test/integration/targets/lookup_csvfile/tasks/main.yml index f01f06a818..bc330e7377 100644 --- a/test/integration/targets/lookup_csvfile/tasks/main.yml +++ b/test/integration/targets/lookup_csvfile/tasks/main.yml @@ -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 |