mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 05:12:45 +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:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user