summaryrefslogtreecommitdiffstats
path: root/test/support/windows-integration/plugins/modules/win_ping.py
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2024-10-09 23:22:35 +0200
committerGitHub <noreply@github.com>2024-10-09 23:22:35 +0200
commita0495fc31497798a7a833ba7406a9729e1528dd8 (patch)
treec9ebc8e92d18e20bbb5f44d0184d00166b63b4df /test/support/windows-integration/plugins/modules/win_ping.py
parentansible-test - Work around pylint issue on 3.11 (#84094) (diff)
downloadansible-a0495fc31497798a7a833ba7406a9729e1528dd8.tar.xz
ansible-a0495fc31497798a7a833ba7406a9729e1528dd8.zip
Update triple single quotes to triple double quotes (#84099)
* Update triple single quotes to triple double quotes This change was fully automated. The updated Python files have been verified to tokenize the same as the originals, except for the expected change in quoting of strings, which were verified through literal_eval. * Manual conversion of docstring quotes
Diffstat (limited to 'test/support/windows-integration/plugins/modules/win_ping.py')
-rw-r--r--test/support/windows-integration/plugins/modules/win_ping.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/support/windows-integration/plugins/modules/win_ping.py b/test/support/windows-integration/plugins/modules/win_ping.py
index 6d35f37994..8784bc9c07 100644
--- a/test/support/windows-integration/plugins/modules/win_ping.py
+++ b/test/support/windows-integration/plugins/modules/win_ping.py
@@ -11,7 +11,7 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
'status': ['stableinterface'],
'supported_by': 'core'}
-DOCUMENTATION = r'''
+DOCUMENTATION = r"""
---
module: win_ping
version_added: "1.7"
@@ -32,9 +32,9 @@ seealso:
- module: ping
author:
- Chris Church (@cchurch)
-'''
+"""
-EXAMPLES = r'''
+EXAMPLES = r"""
# Test connectivity to a windows host
# ansible winserver -m win_ping
@@ -44,12 +44,12 @@ EXAMPLES = r'''
- name: Induce an exception to see what happens
win_ping:
data: crash
-'''
+"""
-RETURN = r'''
+RETURN = r"""
ping:
description: Value provided with the data parameter.
returned: success
type: str
sample: pong
-'''
+"""