summaryrefslogtreecommitdiff
path: root/test/integration/targets/iosxr_command
diff options
context:
space:
mode:
authorKedar Kekan <4506537+kedarX@users.noreply.github.com>2018-02-01 19:45:32 +0530
committerJohn R Barker <john@johnrbarker.com>2018-02-01 14:15:32 +0000
commit684e953b503046229795caae54e77082d6cd2c4c (patch)
treecf37ffaff239fb8e2ced0c97a47132d18a7e4487 /test/integration/targets/iosxr_command
parent2479b6d635be1a5f93fef0f7d40e272731a8147a (diff)
downloadansible-684e953b503046229795caae54e77082d6cd2c4c.tar.gz
* adds commit replace with config file for iosxr (#35564)
* * adds commit replace with config file for iosxr * fixes dci failure in iosxr_logging * * review comment changes
Diffstat (limited to 'test/integration/targets/iosxr_command')
-rw-r--r--test/integration/targets/iosxr_command/tests/cli/invalid.yaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/integration/targets/iosxr_command/tests/cli/invalid.yaml b/test/integration/targets/iosxr_command/tests/cli/invalid.yaml
index d26b9ec18f..1f9393ddec 100644
--- a/test/integration/targets/iosxr_command/tests/cli/invalid.yaml
+++ b/test/integration/targets/iosxr_command/tests/cli/invalid.yaml
@@ -3,7 +3,7 @@
- name: run invalid command
iosxr_command:
- commands: [{command: 'show foo', prompt: 'fooprompt', answer: 'yes'}]
+ commands: {command: 'show foo', prompt: 'fooprompt', answer: 'yes'}
register: result
ignore_errors: yes
@@ -15,7 +15,7 @@
iosxr_command:
commands:
- show version
- - [{command: 'show foo', prompt: 'fooprompt', answer: 'yes'}]
+ - {command: 'show foo', prompt: 'fooprompt', answer: 'yes'}
register: result
ignore_errors: yes