mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-07-05 18:18:53 +00:00
openvswitch_db : Handle column value conversion and idempotency in no_key case (#43869)
* change column value to string. handle idempotency in no key case * fix unit test failures in baseline
This commit is contained in:
parent
2974df9d5e
commit
8eaebf86b6
3 changed files with 13 additions and 11 deletions
|
|
@ -70,7 +70,8 @@
|
|||
table: Bridge
|
||||
record: br-test
|
||||
col: stp_enable
|
||||
value: true
|
||||
value: 'true'
|
||||
become: yes
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
|
|
@ -82,7 +83,8 @@
|
|||
table: Bridge
|
||||
record: br-test
|
||||
col: stp_enable
|
||||
value: true
|
||||
value: 'true'
|
||||
become: yes
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
|
|
@ -96,6 +98,7 @@
|
|||
record: br-test
|
||||
col: other_config
|
||||
value: true
|
||||
become: yes
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue