Fix test for jinja2_native preserve quotes (#79131)

Fixes https://github.com/ansible/ansible/pull/79119#discussion_r993752129
pull/79386/head
Martin Krizek 2 years ago committed by GitHub
parent f53dbf90ea
commit 3a6eca6670
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -10,5 +10,5 @@
second_nested_lvl: "{{ third_nested_lvl }}"
first_nested_lvl: "{{ second_nested_lvl }}"
quoted_str: "{{ first_nested_lvl }}"
empty_quoted_str: '""'
empty_str: "{{ empty_quoted_str}}"
empty_quoted_str: "{{ empty_str }}"
empty_str: '""'

Loading…
Cancel
Save