Fix junos_netconf integration test provider param (#28954)

This commit is contained in:
Ganesh Nalawade 2017-09-02 23:34:51 +05:30 committed by GitHub
parent 13b2bedae6
commit 7372e0c658
2 changed files with 0 additions and 9 deletions

View file

@ -5,7 +5,6 @@
- name: Setup
junos_netconf:
state: present
provider: "{{ cli }}"
register: result
@ -14,7 +13,6 @@
junos_netconf:
state: present
netconf_port: 22
provider: "{{ cli }}"
register: result
- assert:
@ -25,7 +23,6 @@
junos_netconf:
state: present
netconf_port: 22
provider: "{{ cli }}"
register: result
- assert:
@ -63,7 +60,6 @@
- name: Set back netconf to default port
junos_netconf:
state: present
provider: "{{ cli }}"
register: result
- name: Ensure we can communicate over netconf

View file

@ -5,13 +5,11 @@
- name: Ensure netconf is enabled
junos_netconf:
state: present
provider: "{{ cli }}"
register: result
- name: idempotent tests
junos_netconf:
state: present
provider: "{{ cli }}"
register: result
- assert:
@ -30,7 +28,6 @@
- name: Disable netconf
junos_netconf:
state: absent
provider: "{{ cli }}"
register: result
- assert:
@ -40,7 +37,6 @@
- name: idempotent tests
junos_netconf:
state: absent
provider: "{{ cli }}"
register: result
- assert:
@ -66,7 +62,6 @@
- name: re-enable netconf
junos_netconf:
state: present
provider: "{{ cli }}"
register: result