diff options
author | Matt Martz <matt@sivel.net> | 2018-06-26 14:53:58 -0500 |
---|---|---|
committer | Matt Clay <matt@mystile.com> | 2018-06-26 13:40:13 -0700 |
commit | b42a191095c20f32a2ff5d5cfb9a1ddadfd72875 (patch) | |
tree | d98b627841ecac7591882f4ca28d52b29402f29e /docs/docsite/rst/user_guide | |
parent | 701d61531cc81e7e36ac7d1a7f4eea150e52bda4 (diff) | |
download | ansible-b42a191095c20f32a2ff5d5cfb9a1ddadfd72875.tar.gz |
Fix docs for all test. Fixes #41956 (#41965)
(cherry picked from commit 11ce9542269daa9e388d0d1995bd891a1a55d4a0)
Diffstat (limited to 'docs/docsite/rst/user_guide')
-rw-r--r-- | docs/docsite/rst/user_guide/playbooks_tests.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/docsite/rst/user_guide/playbooks_tests.rst b/docs/docsite/rst/user_guide/playbooks_tests.rst index aa0ae6233c..af9887b80a 100644 --- a/docs/docsite/rst/user_guide/playbooks_tests.rst +++ b/docs/docsite/rst/user_guide/playbooks_tests.rst @@ -119,7 +119,7 @@ You can use `any` and `all` to check if any or all elements in a list are true o vars: mylist: - 1 - - 3 == 3 + - "{{ 3 == 3 }}" - True myotherlist: - False |