mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix basic-login eapi tests for eos_banner (#23304)
We should be passing the provider dict, not the transport.
This commit is contained in:
parent
f22702eee2
commit
d268471739
1 changed files with 3 additions and 3 deletions
|
@ -5,7 +5,7 @@
|
||||||
banner: login
|
banner: login
|
||||||
state: absent
|
state: absent
|
||||||
authorize: yes
|
authorize: yes
|
||||||
transport: "{{ eapi }}"
|
provider: "{{ eapi }}"
|
||||||
|
|
||||||
- name: Set login
|
- name: Set login
|
||||||
eos_banner:
|
eos_banner:
|
||||||
|
@ -16,7 +16,7 @@
|
||||||
string
|
string
|
||||||
state: present
|
state: present
|
||||||
authorize: yes
|
authorize: yes
|
||||||
transport: "{{ eapi }}"
|
provider: "{{ eapi }}"
|
||||||
register: result
|
register: result
|
||||||
|
|
||||||
- debug:
|
- debug:
|
||||||
|
@ -39,7 +39,7 @@
|
||||||
string
|
string
|
||||||
state: present
|
state: present
|
||||||
authorize: yes
|
authorize: yes
|
||||||
transport: "{{ eapi }}"
|
provider: "{{ eapi }}"
|
||||||
register: result
|
register: result
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
|
|
Loading…
Reference in a new issue