summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_system/tests/nxapi/set_domain_name.yaml
diff options
context:
space:
mode:
authorNathaniel Case <this.is@nathanielca.se>2018-05-21 10:58:35 -0400
committerJohn R Barker <john@johnrbarker.com>2018-05-21 15:58:35 +0100
commit483df136266c6e7600e7f02ee718a8b1be803461 (patch)
treee2ea5e6311185fc11342a1f388c8c66656c89a91 /test/integration/targets/nxos_system/tests/nxapi/set_domain_name.yaml
parent231c3586bd970d1bc086b361860d55085d8c0798 (diff)
downloadansible-483df136266c6e7600e7f02ee718a8b1be803461.tar.gz
Fixing issues with httpapi (#40388)
* I seem to have forgotten the back half of tests * Set http timeout from persistent_command_timeout * Tweak URL generation and provide URL on error * Push var_options to connection process * Don't wait forever if coming from persistent * Don't send the entire contents of variables to ansible-connection
Diffstat (limited to 'test/integration/targets/nxos_system/tests/nxapi/set_domain_name.yaml')
-rw-r--r--test/integration/targets/nxos_system/tests/nxapi/set_domain_name.yaml4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/integration/targets/nxos_system/tests/nxapi/set_domain_name.yaml b/test/integration/targets/nxos_system/tests/nxapi/set_domain_name.yaml
index a0585b1e31..13adfcbf4b 100644
--- a/test/integration/targets/nxos_system/tests/nxapi/set_domain_name.yaml
+++ b/test/integration/targets/nxos_system/tests/nxapi/set_domain_name.yaml
@@ -5,14 +5,12 @@
nxos_config:
lines: no ip domain-name eng.ansible.com
match: none
- provider: "{{ nxapi }}"
# NXAPI errors if you try to remove something that doesn't exist
ignore_errors: yes
- name: configure domain_name
nxos_system:
domain_name: eng.ansible.com
- provider: "{{ nxapi }}"
register: result
- assert:
@@ -22,7 +20,6 @@
- name: verify domain_name
nxos_system:
domain_name: eng.ansible.com
- provider: "{{ nxapi }}"
register: result
- assert:
@@ -33,6 +30,5 @@
nxos_config:
lines: no ip domain-name eng.ansible.com
match: none
- provider: "{{ nxapi }}"
- debug: msg="END nxapi/set_domain_name.yaml"