From 9b34a0cf4e45b4692896ba19bb41b88d4514b295 Mon Sep 17 00:00:00 2001
From: uihassan <uihassan@etsi.org>
Date: Wed, 25 Nov 2020 17:43:47 +0500
Subject: [PATCH] optional descriptor attribute removed

---
 .../VnfLcmMntOperationKeywords.robot                         | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/SOL003/VNFLifecycleManagement-API/VnfLcmMntOperationKeywords.robot b/SOL003/VNFLifecycleManagement-API/VnfLcmMntOperationKeywords.robot
index 874fd3bb..eef1c242 100644
--- a/SOL003/VNFLifecycleManagement-API/VnfLcmMntOperationKeywords.robot
+++ b/SOL003/VNFLifecycleManagement-API/VnfLcmMntOperationKeywords.robot
@@ -376,10 +376,9 @@ POST Create a new vnfInstance
     ${product_name}=    Get Variable Value    ${topology_template.node_templates.${vnfKey}.properties.product_name}
     ${software_version}=    Get Variable Value    ${topology_template.node_templates.${vnfKey}.properties.software_version}
     ${descriptor_version}=    Get Variable Value    ${topology_template.node_templates.${vnfKey}.properties.descriptor_version}
-    ${configurable_properties}=    Get Variable Value    ${topology_template.node_templates.${vnfKey}.properties.configurable_properties}
     ${flavour_id}=    Get Variable Value    ${topology_template.node_templates.${vnfKey}.properties.flavour_id}
     ${template}=    Get File    jsons/createVnfRequest.json
-    ${body}=        Format String   ${template}     vnfdId=${descriptor_id}    vnfProvider=${provider}    vnfProductName=${product_name}    vnfSoftwareVersion=${software_version}    vnfdVersion= ${descriptor_version}    vnfConfigurableProperties=${configurable_properties}    flavourId=${flavour_id}
+    ${body}=        Format String   ${template}     vnfdId=${descriptor_id}    vnfProvider=${provider}    vnfProductName=${product_name}    vnfSoftwareVersion=${software_version}    vnfdVersion= ${descriptor_version}    flavourId=${flavour_id}
     Post    ${apiRoot}/${apiName}/${apiMajorVersion}/vnf_instances    ${body}
     ${outputResponse}=    Output    response
 	Set Global Variable    ${response}    ${outputResponse} 	
@@ -1210,7 +1209,6 @@ Parse SOL001
     ${product_name}=    Get Variable Value    ${topology_template.node_templates.${vnfKey}.properties.product_name}
     ${software_version}=    Get Variable Value    ${topology_template.node_templates.${vnfKey}.properties.software_version}
     ${descriptor_version}=    Get Variable Value    ${topology_template.node_templates.${vnfKey}.properties.descriptor_version}
-    ${configurable_properties}=    Get Variable Value    ${topology_template.node_templates.${vnfKey}.properties.configurable_properties}
     ${flavour_id}=    Get Variable Value    ${topology_template.node_templates.${vnfKey}.properties.flavour_id}
     
     Should Be Equal As Strings    ${response['body']['vnfdId']}    ${descriptor_id}
@@ -1218,7 +1216,6 @@ Parse SOL001
     Should Be Equal As Strings    ${response['body']['vnfProductName']}    ${product_name}
     Should Be Equal As Strings    ${response['body']['vnfSoftwareVesion']}    ${software_version}
     Should Be Equal As Strings    ${response['body']['vnfdVersion']}    ${descriptor_version}
-    Should Be Equal As Strings    ${response['body']['vnfConfigurableProperties']}    ${configurable_properties}
     Should Be Equal As Strings    ${response['body']['instantiatedVnfInfo']['flavourId']}    ${flavour_id}
     
 Parse SOL006
-- 
GitLab