diff options
author | Steven Wright <sw3588@att.com> | 2019-05-28 13:08:37 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-05-28 13:08:37 +0000 |
commit | 32ae86efa75a62edd9e6739236bdc3c0ff87676a (patch) | |
tree | eaa253f1c6775479c198e28ad328a86888bfcfea /ice_validator/tests/fixtures | |
parent | 62a48cfb8f633a5b8374d975174999d04c3bdcee (diff) | |
parent | aac94d19ae2c3140c69cb04471183c11d78dc8d3 (diff) |
Merge "[VVP] Refine nested get_param test per R-10834 update"
Diffstat (limited to 'ice_validator/tests/fixtures')
-rw-r--r-- | ice_validator/tests/fixtures/test_nested_parameter_args/fail/fail0.yaml | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/ice_validator/tests/fixtures/test_nested_parameter_args/fail/fail0.yaml b/ice_validator/tests/fixtures/test_nested_parameter_args/fail/fail0.yaml index 0d25822..7da9b03 100644 --- a/ice_validator/tests/fixtures/test_nested_parameter_args/fail/fail0.yaml +++ b/ice_validator/tests/fixtures/test_nested_parameter_args/fail/fail0.yaml @@ -40,19 +40,16 @@ --- parameters: - cdl: + list_one: type: comma_delimited_list - num: + list_two: + type: comma_delimited_list + index_one: + type: number + index_two: type: number resources: - ex1_nova_server_0: - type: OS::Nova::Server + resource: properties: - name: { get_param: [ ex1_vm_names, 0 ] } - metadata: - vnf_id: { get_param: vnf_id } - vf_module_id1: - get_param: [ cdl, { get_param: xnum }] - vf_module_id2: - get_param: [ xcdl, { get_param: num }] - + prop: {get_param: [list_one, {get_param: [list_two, {get_param: index_two}]}]} + prop_two: {get_param: [list_one, {get_param: [list_two, 0]}]} |