diff options
author | Lovett, Trevor <trevor.lovett@att.com> | 2019-05-24 18:28:36 -0500 |
---|---|---|
committer | Lovett, Trevor <trevor.lovett@att.com> | 2019-05-24 18:28:36 -0500 |
commit | aac94d19ae2c3140c69cb04471183c11d78dc8d3 (patch) | |
tree | 1281209bf6dba2c85b805e1ddbddbeae3f9b3cff /ice_validator/tests/fixtures | |
parent | 6c566ba71d909294cbc46224b763037a21da6491 (diff) |
[VVP] Refine nested get_param test per R-10834 update
R-10834 was updated via VNFRQTS-646 to better reflect SDC's level of
support
Change-Id: I5232e7dc88c8c20f076788abf368bf33f4f1e1cb
Issue-ID: VVP-219
Signed-off-by: Lovett, Trevor <trevor.lovett@att.com>
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]}]} |