From 67afaca4f14965ac90f724ec56fb87d900cf807a Mon Sep 17 00:00:00 2001 From: DR695H Date: Tue, 23 Jul 2019 17:13:23 -0400 Subject: cleaning up some warnings need these cleaned before switching over the variabel strucuture in preload Issue-ID: TEST-174 Change-Id: I1667f45b0135a059dfab2835c9b4f743703c60a5 Signed-off-by: DR695H --- robot/resources/openstack/keystone_interface.robot | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'robot/resources/openstack/keystone_interface.robot') diff --git a/robot/resources/openstack/keystone_interface.robot b/robot/resources/openstack/keystone_interface.robot index 1df6ac91..4ea86d6c 100644 --- a/robot/resources/openstack/keystone_interface.robot +++ b/robot/resources/openstack/keystone_interface.robot @@ -6,7 +6,7 @@ Library ONAPLibrary.Utilities Library Collections Library OperatingSystem Library String -Library ONAPLibrary.Templating +Library ONAPLibrary.Templating WITH NAME Templating Resource ../global_properties.robot Resource openstack_common.robot @@ -67,8 +67,8 @@ Get KeyStoneAuthv2 Data [Documentation] Returns all the data for keystone auth v2 api [Arguments] ${username} ${password} ${path} ${arguments}= Create Dictionary username=${username} password=${password} tenantId=${GLOBAL_INJECTED_OPENSTACK_TENANT_ID} - Create Environment keystone ${GLOBAL_TEMPLATE_FOLDER} - ${data}= Apply Template keystone ${OPENSTACK_KEYSTONE_AUTH_v2_BODY_FILE} ${arguments} + Templating.Create Environment keystone ${GLOBAL_TEMPLATE_FOLDER} + ${data}= Templating.Apply Template keystone ${OPENSTACK_KEYSTONE_AUTH_v2_BODY_FILE} ${arguments} ${data_path}= Catenate ${path}${OPENSTACK_KEYSTONE_AUTH_v2_PATH} [Return] ${data_path} ${data} @@ -76,8 +76,8 @@ Get KeyStoneAuthv3 Data [Documentation] Returns all the data for keystone auth v3 api [Arguments] ${username} ${password} ${path} ${arguments}= Create Dictionary username=${username} password=${password} domain_id=${GLOBAL_INJECTED_OPENSTACK_DOMAIN_ID} project_name=${GLOBAL_INJECTED_OPENSTACK_PROJECT_NAME} - Create Environment keystone ${GLOBAL_TEMPLATE_FOLDER} - ${data}= Apply Template keystone ${OPENSTACK_KEYSTONE_AUTH_v3_BODY_FILE} ${arguments} + Templating.Create Environment keystone ${GLOBAL_TEMPLATE_FOLDER} + ${data}= Templating.Apply Template keystone ${OPENSTACK_KEYSTONE_AUTH_v3_BODY_FILE} ${arguments} ${data_path}= Catenate ${path}${OPENSTACK_KEYSTONE_AUTH_v3_PATH} [Return] ${data_path} ${data} -- cgit 1.2.3-korg