From 9d94a309ca5b2f5d1e531e3d083d685ff2cc1752 Mon Sep 17 00:00:00 2001 From: John R Barker Date: Mon, 3 Jul 2017 13:18:32 +0100 Subject: [PATCH] Remove test of openvswitch_db state (#26349) The `state:` option didn't exist in Ansible 2.3, so don't test it. --- .../targets/openvswitch_db/tests/basic.yaml | 27 ------------------- 1 file changed, 27 deletions(-) diff --git a/test/integration/targets/openvswitch_db/tests/basic.yaml b/test/integration/targets/openvswitch_db/tests/basic.yaml index d0c906b95e9..0f6acdfa886 100644 --- a/test/integration/targets/openvswitch_db/tests/basic.yaml +++ b/test/integration/targets/openvswitch_db/tests/basic.yaml @@ -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"