diff options
author | DR695H <dr695h@att.com> | 2019-08-20 12:37:45 -0400 |
---|---|---|
committer | DR695H <dr695h@att.com> | 2019-08-20 12:37:45 -0400 |
commit | 4ab02dddd76c37467b56f097dd24b7fef134d5e5 (patch) | |
tree | 8d45148a7b2560fb6aeac007d974f353005ea91e /robotframework-onap/ONAPLibrary/BaseAAIKeywords.py | |
parent | afd5237ef7c1d46e2d8b3eebe890e20818424e18 (diff) |
str for aai properties and adding a test
Issue-ID: TEST-184
Change-Id: I489e55835bad95d9b35419edbcb892d3e228bced
Signed-off-by: DR695H <dr695h@att.com>
Diffstat (limited to 'robotframework-onap/ONAPLibrary/BaseAAIKeywords.py')
-rw-r--r-- | robotframework-onap/ONAPLibrary/BaseAAIKeywords.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/robotframework-onap/ONAPLibrary/BaseAAIKeywords.py b/robotframework-onap/ONAPLibrary/BaseAAIKeywords.py index fdc9e84..0b312df 100644 --- a/robotframework-onap/ONAPLibrary/BaseAAIKeywords.py +++ b/robotframework-onap/ONAPLibrary/BaseAAIKeywords.py @@ -33,7 +33,7 @@ class BaseAAIKeywords(object): aai_ip_addr = self.vars.get_globally_injected_parameters().get('GLOBAL_INJECTED_AAI_IP_ADDR', '') aai_server_protocol = self.vars.get_global_parameters().get('GLOBAL_AAI_SERVER_PROTOCOL', '') aai_server_port = self.vars.get_global_parameters().get('GLOBAL_AAI_SERVER_PORT', '') - self.aai_endpoint = aai_server_protocol + '://' + aai_ip_addr + ':' + aai_server_port + self.aai_endpoint = str(aai_server_protocol) + '://' + str(aai_ip_addr) + ':' + str(aai_server_port) @keyword def run_get_request(self, endpoint, data_path, accept="application/json", auth=None, client_certs=None): |