diff options
author | Dag Wieers <dag@wieers.com> | 2018-02-09 21:21:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-09 21:21:56 +0100 |
commit | 01ba3a4efcb7aa830e3c726de58a0690756dc6f1 (patch) | |
tree | 762560ad5d7f5050241236f266cbb6e295e9fe1d /test/integration/targets/aci_bd_subnet | |
parent | aci_interface_policy_leaf_policy_group: Fix tests (#35973) (diff) | |
download | ansible-01ba3a4efcb7aa830e3c726de58a0690756dc6f1.tar.xz ansible-01ba3a4efcb7aa830e3c726de58a0690756dc6f1.zip |
ACI: Fixes to recent change to parameter choices (#35968)
This PR includes:
- Fixes related to the recent merge of #31637 and #34537
- A generic fix for a reference for assignment issue
- Fixes to aci.boolean() in order to catch exception
Diffstat (limited to 'test/integration/targets/aci_bd_subnet')
-rw-r--r-- | test/integration/targets/aci_bd_subnet/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/targets/aci_bd_subnet/tasks/main.yml b/test/integration/targets/aci_bd_subnet/tasks/main.yml index bd07b44e17..fde918afe4 100644 --- a/test/integration/targets/aci_bd_subnet/tasks/main.yml +++ b/test/integration/targets/aci_bd_subnet/tasks/main.yml @@ -109,7 +109,7 @@ - modify_subnet.changed != modify_subnet.proposed - 'modify_subnet.sent == {"fvSubnet": {"attributes": {"ctrl": "querier", "scope": "public,shared"}}}' - create_bad_scope.failed == true - - 'create_bad_scope.msg.startswith("value of scope must be one of")' + - create_bad_scope.msg.startswith("Parameter 'scope' cannot be both 'private' and 'public'") - create_incomplete_data.failed == true - 'create_incomplete_data.msg == "state is present but all of the following are missing: bd"' |