summaryrefslogtreecommitdiff
path: root/docs/docsite/rst/playbook_guide/playbooks_tests.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/docsite/rst/playbook_guide/playbooks_tests.rst')
-rw-r--r--docs/docsite/rst/playbook_guide/playbooks_tests.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/docsite/rst/playbook_guide/playbooks_tests.rst b/docs/docsite/rst/playbook_guide/playbooks_tests.rst
index 71eaee838b..ccf6f9e642 100644
--- a/docs/docsite/rst/playbook_guide/playbooks_tests.rst
+++ b/docs/docsite/rst/playbook_guide/playbooks_tests.rst
@@ -461,11 +461,11 @@ When looking to determine types, it may be tempting to use the ``type_debug`` fi
a_list: ["a", "list"]
assert:
that:
- # Note that a string is classed as also being "iterable", "sequence" and "mapping"
- - a_string is string
+ # Note that a string is classed as also being "iterable" and "sequence", but not "mapping"
+ - a_string is string and a_string is iterable and a_string is sequence and a_string is not mapping
# Note that a dictionary is classed as not being a "string", but is "iterable", "sequence" and "mapping"
- - a_dictionary is not string and a_dictionary is mapping
+ - a_dictionary is not string and a_dictionary is iterable and a_dictionary is mapping
# Note that a list is classed as not being a "string" or "mapping" but is "iterable" and "sequence"
- a_list is not string and a_list is not mapping and a_list is iterable