From d4af56d4c2f67a1285da783764f20a0c1c546592 Mon Sep 17 00:00:00 2001 From: umry8364 Date: Wed, 28 Aug 2019 12:06:30 +0200 Subject: Add tox it would create virtualenv to - run tests in python2.7 and 3 - perform linting operations (flake8, pylint) Issue-ID: INT-1228 Change-Id: I451e1108285f6ebffc650bf3de4f175594ec796d Signed-off-by: umry8364 Signed-off-by: DR695H --- robotframework-onap/ONAPLibrary/CloudConfigSOKeywords.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'robotframework-onap/ONAPLibrary/CloudConfigSOKeywords.py') diff --git a/robotframework-onap/ONAPLibrary/CloudConfigSOKeywords.py b/robotframework-onap/ONAPLibrary/CloudConfigSOKeywords.py index fb8808d..fe487a2 100644 --- a/robotframework-onap/ONAPLibrary/CloudConfigSOKeywords.py +++ b/robotframework-onap/ONAPLibrary/CloudConfigSOKeywords.py @@ -31,7 +31,7 @@ class CloudConfigSOKeywords(object): @keyword def get_cloud_configuration(self, endpoint, data_path, site_name, auth=None): """Gets cloud configuration in SO""" - return self.reqs.get_request("so", endpoint, data_path + "/" + site_name, auth=auth) + return self.reqs.get_request(alias="so", endpoint=endpoint, data_path=data_path + "/" + site_name, auth=auth) @keyword def create_cloud_configuration(self, endpoint, data_path, templates_folder, template, arguments, auth=None): -- cgit 1.2.3-korg