Skip to content

Commit

Permalink
Fix junos_netconf integration test provider param (ansible#28954)
Browse files Browse the repository at this point in the history
  • Loading branch information
ganeshrn authored Sep 2, 2017
1 parent 13b2bed commit 7372e0c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
- name: Setup
junos_netconf:
state: present
provider: "{{ cli }}"
register: result


Expand All @@ -14,7 +13,6 @@
junos_netconf:
state: present
netconf_port: 22
provider: "{{ cli }}"
register: result

- assert:
Expand All @@ -25,7 +23,6 @@
junos_netconf:
state: present
netconf_port: 22
provider: "{{ cli }}"
register: result

- assert:
Expand Down Expand Up @@ -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
Expand Down
5 changes: 0 additions & 5 deletions test/integration/targets/junos_netconf/tests/cli/netconf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -30,7 +28,6 @@
- name: Disable netconf
junos_netconf:
state: absent
provider: "{{ cli }}"
register: result

- assert:
Expand All @@ -40,7 +37,6 @@
- name: idempotent tests
junos_netconf:
state: absent
provider: "{{ cli }}"
register: result

- assert:
Expand All @@ -66,7 +62,6 @@
- name: re-enable netconf
junos_netconf:
state: present
provider: "{{ cli }}"
register: result


Expand Down

0 comments on commit 7372e0c

Please sign in to comment.