summaryrefslogtreecommitdiff
path: root/test/integration/targets/vyos_command/tests/cli/cli_command.yaml
diff options
context:
space:
mode:
authoransible-zuul[bot] <48994755+ansible-zuul[bot]@users.noreply.github.com>2019-08-16 18:55:56 +0000
committerGitHub <noreply@github.com>2019-08-16 18:55:56 +0000
commit3fabcd898a415a724048f445dfc35e29f895fe2e (patch)
tree391360212f87a5d815f91e05205f38f7c733a10a /test/integration/targets/vyos_command/tests/cli/cli_command.yaml
parent83a80f9f9df748b10eaa36dd3aab4592aaf40b28 (diff)
parent6a2aa3b8adaf9dd220916e42ec65904820d64092 (diff)
downloadvyos.vyos-3fabcd898a415a724048f445dfc35e29f895fe2e.tar.gz
vyos.vyos-3fabcd898a415a724048f445dfc35e29f895fe2e.zip
Merge pull request #19 from ansible-network/ansible_sha_e7a8e4805349aec2d8a9538f544ad9e29b2e6318
based on ansible/ansible e7a8e4805349aec2d8a9538f544ad9e29b2e6318 Reviewed-by: https://github.com/apps/ansible-zuul
Diffstat (limited to 'test/integration/targets/vyos_command/tests/cli/cli_command.yaml')
-rw-r--r--test/integration/targets/vyos_command/tests/cli/cli_command.yaml6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/integration/targets/vyos_command/tests/cli/cli_command.yaml b/test/integration/targets/vyos_command/tests/cli/cli_command.yaml
index caeb2021..08a7675b 100644
--- a/test/integration/targets/vyos_command/tests/cli/cli_command.yaml
+++ b/test/integration/targets/vyos_command/tests/cli/cli_command.yaml
@@ -4,7 +4,7 @@
- block:
- name: get output for single command
- cli_command:
+ network.cli.cli_command:
command: show version
register: result
@@ -14,7 +14,7 @@
- "result.stdout is defined"
- name: send invalid command
- cli_command:
+ network.cli.cli_command:
command: 'show foo'
register: result
ignore_errors: yes
@@ -27,7 +27,7 @@
- block:
- name: test failure for local connection
- cli_command:
+ network.cli.cli_command:
command: show version
register: result
ignore_errors: yes