summaryrefslogtreecommitdiffstats
path: root/robotframework-onap/ONAPLibrary/SO.py
diff options
context:
space:
mode:
Diffstat (limited to 'robotframework-onap/ONAPLibrary/SO.py')
-rw-r--r--robotframework-onap/ONAPLibrary/SO.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/robotframework-onap/ONAPLibrary/SO.py b/robotframework-onap/ONAPLibrary/SO.py
index 2454e97..3d2cbc3 100644
--- a/robotframework-onap/ONAPLibrary/SO.py
+++ b/robotframework-onap/ONAPLibrary/SO.py
@@ -15,6 +15,7 @@
from ONAPLibrary.RequestSOKeywords import RequestSOKeywords
from ONAPLibrary.robotlibcore import HybridCore
from ONAPLibrary.BaseSOKeywords import BaseSOKeywords
+from ONAPLibrary.CloudConfigSOKeywords import CloudConfigSOKeywords
class SO(HybridCore):
@@ -26,6 +27,7 @@ class SO(HybridCore):
def __init__(self):
self.keyword_implementors = [
BaseSOKeywords(),
- RequestSOKeywords()
+ RequestSOKeywords(),
+ CloudConfigSOKeywords()
]
HybridCore.__init__(self, self.keyword_implementors)