aboutsummaryrefslogtreecommitdiffstats
path: root/robot/resources/aai/create_customer.robot
diff options
context:
space:
mode:
Diffstat (limited to 'robot/resources/aai/create_customer.robot')
-rw-r--r--robot/resources/aai/create_customer.robot7
1 files changed, 4 insertions, 3 deletions
diff --git a/robot/resources/aai/create_customer.robot b/robot/resources/aai/create_customer.robot
index c0498b6c..f5e73d36 100644
--- a/robot/resources/aai/create_customer.robot
+++ b/robot/resources/aai/create_customer.robot
@@ -39,9 +39,10 @@ Get OwningEntity Id
[Documentation] Returns OwningEntity Id based on OwningEntity name
[Arguments] ${name}
${resp}= AAI.Run Get Request ${AAI_FRONTEND_ENDPOINT} /aai/v11/business/owning-entities auth=${GLOBAL_AAI_AUTHENTICATION}
- @{list}= Copy List ${resp.json['owning-entity']}
+ ${resp_json}= Set Variable ${resp.json()}
+ @{list}= Copy List ${resp_json['owning-entity']}
:FOR ${map} IN @{list}
- \ ${owning_entity_name}= Run Keyword And Ignore Error Get From Dictionary ${map} owning-entity-name
- \ ${owning_entity_id}= Run Keyword And Ignore Error Get From Dictionary ${map} owning-entity-id
+ \ ${owning_entity_name}= Get From Dictionary ${map} owning-entity-name
+ \ ${owning_entity_id}= Get From Dictionary ${map} owning-entity-id
\ ${id} Run Keyword If '${owning_entity_name}' == '${name}' Set Variable ${owning_entity_id}
[Return] ${id} \ No newline at end of file