summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_vtp_domain
diff options
context:
space:
mode:
authorNathaniel Case <this.is@nathanielca.se>2018-07-02 09:43:51 -0400
committerGitHub <noreply@github.com>2018-07-02 09:43:51 -0400
commita1971259540ccc1be3df811252f5b832e7af2d87 (patch)
treedeac7c985fecc5fd1567f604308d211df68e7db2 /test/integration/targets/nxos_vtp_domain
parent1659951710a7a8468a65e76e31006dc972b4468a (diff)
downloadansible-a1971259540ccc1be3df811252f5b832e7af2d87.tar.gz
Nxos restore provider to nxapi tests (#41818)
* Quick and dirty sed to add provider * Manually verify the rest of the cases * Add missing provider
Diffstat (limited to 'test/integration/targets/nxos_vtp_domain')
-rw-r--r--test/integration/targets/nxos_vtp_domain/tests/common/sanity.yaml3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/integration/targets/nxos_vtp_domain/tests/common/sanity.yaml b/test/integration/targets/nxos_vtp_domain/tests/common/sanity.yaml
index c105da18d4..a3f90510bc 100644
--- a/test/integration/targets/nxos_vtp_domain/tests/common/sanity.yaml
+++ b/test/integration/targets/nxos_vtp_domain/tests/common/sanity.yaml
@@ -7,11 +7,13 @@
- name: enable feature vtp
nxos_feature:
feature: vtp
+ provider: "{{ connection }}"
state: enabled
- name: configure vtp domain
nxos_vtp_domain: &configure
domain: ntc
+ provider: "{{ connection }}"
register: result
- assert: &true
@@ -30,6 +32,7 @@
- name: disable feature vtp
nxos_feature:
feature: vtp
+ provider: "{{ connection }}"
state: disabled
- debug: msg="END connection={{ ansible_connection }} nxos_vtp_domain sanity test"