diff options
author | DR695H <dr695h@att.com> | 2019-07-23 17:13:23 -0400 |
---|---|---|
committer | DR695H <dr695h@att.com> | 2019-07-23 17:13:23 -0400 |
commit | 67afaca4f14965ac90f724ec56fb87d900cf807a (patch) | |
tree | 7c16dee56cca3d7b86bb820e4892722a77d1a401 /robot/resources/openstack/keystone_interface.robot | |
parent | 102f3207fbec080e81d4abaa9c7277cbf5d52a37 (diff) |
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 <dr695h@att.com>
Diffstat (limited to 'robot/resources/openstack/keystone_interface.robot')
-rw-r--r-- | robot/resources/openstack/keystone_interface.robot | 10 |
1 files changed, 5 insertions, 5 deletions
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} |