summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbhijeet Kasurde <akasurde@redhat.com>2022-10-21 00:36:15 +0530
committerGitHub <noreply@github.com>2022-10-20 15:06:15 -0400
commit551f5a375327347b26d352c3cbbc93afc93a2402 (patch)
treeb32cd8a262c469a401d07551032e058c291214b0
parentae38628404598832c5e652ec805e89a62c24e2c4 (diff)
downloadansible-551f5a375327347b26d352c3cbbc93afc93a2402.tar.gz
Change occurance yes/no to true/false (#79035)
-rw-r--r--docs/docsite/rst/community/collection_contributors/collection_integration_about.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/docsite/rst/community/collection_contributors/collection_integration_about.rst b/docs/docsite/rst/community/collection_contributors/collection_integration_about.rst
index 652b11f631..d011fdb064 100644
--- a/docs/docsite/rst/community/collection_contributors/collection_integration_about.rst
+++ b/docs/docsite/rst/community/collection_contributors/collection_integration_about.rst
@@ -128,7 +128,7 @@ To check a task:
#. Expected return values.
2. If the module changes the system state, check the actual system state using at least one other module. For example, if the module changes a file, we can check that the file has been changed by checking its checksum with the :ref:`stat <ansible_collections.ansible.builtin.stat_module>` module before and after the test tasks.
-3. Run the same task with ``check_mode: yes`` if check-mode is supported by the module. Check with other modules that the actual system state has not been changed.
+3. Run the same task with ``check_mode: true`` if check-mode is supported by the module. Check with other modules that the actual system state has not been changed.
4. Cover cases when the module must fail. Use the ``ignore_errors: true`` option and check the returned message with the ``assert`` module.
Example: