From 0409f4048bc90da4e5169fc242f575d4e0196a2c Mon Sep 17 00:00:00 2001 From: "patchback[bot]" <45432694+patchback[bot]@users.noreply.github.com> Date: Sat, 29 Mar 2025 11:01:57 +0100 Subject: [PATCH] [PR #9945/e5e33534 backport][stable-9] Simplify YAML callback tests (#9947) Simplify YAML callback tests (#9945) Simplify YAML callback tests. (cherry picked from commit e5e335348a14789fc502ed1d84f3c05b604e4803) Co-authored-by: Felix Fontein --- tests/integration/targets/callback_yaml/tasks/main.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/integration/targets/callback_yaml/tasks/main.yml b/tests/integration/targets/callback_yaml/tasks/main.yml index f3c36663da..a66892e0f0 100644 --- a/tests/integration/targets/callback_yaml/tasks/main.yml +++ b/tests/integration/targets/callback_yaml/tasks/main.yml @@ -67,7 +67,7 @@ ANSIBLE_NOCOLOR: 'true' ANSIBLE_FORCE_COLOR: 'false' ANSIBLE_STDOUT_CALLBACK: community.general.yaml - playbook: | + playbook: !unsafe | - hosts: testhost gather_facts: false vars: @@ -78,9 +78,7 @@ tasks: - name: Test to_yaml debug: - msg: "{{ '{{' }}'{{ '{{' }}'{{ '}}' }} data | to_yaml {{ '{{' }}'{{ '}}' }}'{{ '}}' }}" - # The above should be: msg: "{{ data | to_yaml }}" - # Unfortunately, the way Ansible handles templating, we need to do some funny 'escaping' tricks... + msg: "{{ data | to_yaml }}" expected_output: [ "", "PLAY [testhost] ****************************************************************",