Remove test of openvswitch_db state (#26349)

The `state:` option didn't exist in Ansible 2.3, so don't test it.
pull/26350/head
John R Barker 9 years ago committed by GitHub
parent 1ad1ad6ace
commit 9d94a309ca

@ -54,30 +54,3 @@
that:
- "result.changed == false"
- name: Remove bridge
openvswitch_db:
table: Bridge
record: br-test
col: other_config
key: disable-in-band
value: false
state: absent
register: result
- assert:
that:
- "result.changed == true"
- name: Remove bridge again (idempotent)
openvswitch_db:
table: Bridge
record: br-test
col: other_config
key: disable-in-band
value: false
state: absent
register: result
- assert:
that:
- "result.changed == false"

Loading…
Cancel
Save