summaryrefslogtreecommitdiff
path: root/test/integration/targets/junos_netconf
diff options
context:
space:
mode:
authorGanesh Nalawade <ganesh634@gmail.com>2017-09-02 23:34:51 +0530
committerGitHub <noreply@github.com>2017-09-02 23:34:51 +0530
commit7372e0c658f8357c4fd0d5d6cbeae8266baa3aac (patch)
treea3bf3f200337dd33bcc294067b6d862f40674ca1 /test/integration/targets/junos_netconf
parent13b2bedae6aa56db4213c14f361bec7aa56972fb (diff)
downloadansible-7372e0c658f8357c4fd0d5d6cbeae8266baa3aac.tar.gz
Fix junos_netconf integration test provider param (#28954)
Diffstat (limited to 'test/integration/targets/junos_netconf')
-rw-r--r--test/integration/targets/junos_netconf/tests/cli/changeport.yaml4
-rw-r--r--test/integration/targets/junos_netconf/tests/cli/netconf.yaml5
2 files changed, 0 insertions, 9 deletions
diff --git a/test/integration/targets/junos_netconf/tests/cli/changeport.yaml b/test/integration/targets/junos_netconf/tests/cli/changeport.yaml
index 1822b53894..db934deab0 100644
--- a/test/integration/targets/junos_netconf/tests/cli/changeport.yaml
+++ b/test/integration/targets/junos_netconf/tests/cli/changeport.yaml
@@ -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
diff --git a/test/integration/targets/junos_netconf/tests/cli/netconf.yaml b/test/integration/targets/junos_netconf/tests/cli/netconf.yaml
index b53df7152c..dfaddfdd5f 100644
--- a/test/integration/targets/junos_netconf/tests/cli/netconf.yaml
+++ b/test/integration/targets/junos_netconf/tests/cli/netconf.yaml
@@ -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