From daec16c9140e962235523a357b465c70c166a88f Mon Sep 17 00:00:00 2001 From: DR695H Date: Wed, 19 Jun 2019 17:40:26 -0400 Subject: only use the file version of json template Issue-ID: TEST-158 Change-Id: Ib172145fe3e5d77bd688505b145ca1709422366a Signed-off-by: DR695H --- robot/resources/aai/create_service.robot | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'robot/resources/aai/create_service.robot') diff --git a/robot/resources/aai/create_service.robot b/robot/resources/aai/create_service.robot index f4f2b27c..0584a2a1 100644 --- a/robot/resources/aai/create_service.robot +++ b/robot/resources/aai/create_service.robot @@ -5,7 +5,6 @@ Documentation Create A&AI Customer API. Resource ../json_templater.robot Resource aai_interface.robot -Library OperatingSystem Library Collections Library ONAPLibrary.Utilities @@ -30,9 +29,8 @@ Create Service [Documentation] Creates a service in A&AI [Arguments] ${service_type} ${uuid}= Generate UUID4 - ${data_template}= OperatingSystem.Get File ${AAI_ADD_SERVICE_BODY} ${arguments}= Create Dictionary service_type=${service_type} UUID=${uuid} - ${data}= Fill JSON Template ${data_template} ${arguments} + ${data}= Fill JSON Template File ${AAI_ADD_SERVICE_BODY} ${arguments} ${fullpath}= Catenate ${INDEX PATH}${ROOT_SERVICE_PATH}/service/${uuid} ${put_resp}= Run A&AI Put Request ${fullpath} ${data} Should Be Equal As Strings ${put_resp.status_code} 201 -- cgit 1.2.3-korg