From fc15dfa375556d3dfc52453f3736ae84aaeadacf Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Sat, 29 Mar 2025 10:38:09 +0100 Subject: [PATCH] Simplify YAML callback tests. --- 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] ****************************************************************",