summaryrefslogtreecommitdiffstats
path: root/robotframework-onap/ONAPLibrary/Utilities.py
diff options
context:
space:
mode:
Diffstat (limited to 'robotframework-onap/ONAPLibrary/Utilities.py')
-rw-r--r--robotframework-onap/ONAPLibrary/Utilities.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/robotframework-onap/ONAPLibrary/Utilities.py b/robotframework-onap/ONAPLibrary/Utilities.py
index 8c1f355..f791c9a 100644
--- a/robotframework-onap/ONAPLibrary/Utilities.py
+++ b/robotframework-onap/ONAPLibrary/Utilities.py
@@ -17,16 +17,18 @@ from ONAPLibrary.DNSKeywords import DNSKeywords
from ONAPLibrary.SocketKeywords import SocketKeywords
from ONAPLibrary.UUIDKeywords import UUIDKeywords
from ONAPLibrary.HTTPKeywords import HTTPKeywords
+from ONAPLibrary.Base64Keywords import Base64Keywords
class Utilities(HybridCore):
- """ DNS Keywords are useful for DNS requests """
+ """ Keywords are useful for helper functions requests """
def __init__(self):
self.keyword_implementors = [
DNSKeywords(),
SocketKeywords(),
UUIDKeywords(),
- HTTPKeywords()
+ HTTPKeywords(),
+ Base64Keywords()
]
HybridCore.__init__(self, self.keyword_implementors)