summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_vtp_domain/tests/common/sanity.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/nxos_vtp_domain/tests/common/sanity.yaml')
-rw-r--r--test/integration/targets/nxos_vtp_domain/tests/common/sanity.yaml6
1 files changed, 0 insertions, 6 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 4ba271ba1d..ebd821aa37 100644
--- a/test/integration/targets/nxos_vtp_domain/tests/common/sanity.yaml
+++ b/test/integration/targets/nxos_vtp_domain/tests/common/sanity.yaml
@@ -1,7 +1,5 @@
---
- debug: msg="START connection={{ ansible_connection }} nxos_vtp_domain sanity test"
-- debug: msg="Using provider={{ connection.transport }}"
- when: ansible_connection == "local"
- set_fact: vtp_run="true"
- set_fact: vtp_run="false"
@@ -11,20 +9,17 @@
- name: disable feature vtp
nxos_feature:
feature: vtp
- provider: "{{ connection }}"
state: disabled
ignore_errors: yes
- 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
@@ -45,7 +40,6 @@
- name: disable feature vtp
nxos_feature:
feature: vtp
- provider: "{{ connection }}"
state: disabled
- debug: msg="END connection={{ ansible_connection }} nxos_vtp_domain sanity test"