summaryrefslogtreecommitdiffstats
path: root/robotframework-onap/ONAPLibrary/Utilities.py
diff options
context:
space:
mode:
authorDR695H <dr695h@att.com>2019-06-17 13:31:29 -0400
committerDR695H <dr695h@att.com>2019-06-17 13:31:35 -0400
commit88f5696f95de46790afb5899cfd1ebdde96fd41b (patch)
tree68b72a03923c36b342f0cc583e98e76e4ad0cf94 /robotframework-onap/ONAPLibrary/Utilities.py
parent294f996db033c0f8be6143dad201dc9d8b4b6959 (diff)
moving http to new keyword format
Issue-ID: TEST-158 Change-Id: Ib0accb92a39a50fdc63227768a5fe628930c91df Signed-off-by: DR695H <dr695h@att.com>
Diffstat (limited to 'robotframework-onap/ONAPLibrary/Utilities.py')
-rw-r--r--robotframework-onap/ONAPLibrary/Utilities.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/robotframework-onap/ONAPLibrary/Utilities.py b/robotframework-onap/ONAPLibrary/Utilities.py
index 9f1e0c0..8c1f355 100644
--- a/robotframework-onap/ONAPLibrary/Utilities.py
+++ b/robotframework-onap/ONAPLibrary/Utilities.py
@@ -16,6 +16,7 @@ from ONAPLibrary.robotlibcore import HybridCore
from ONAPLibrary.DNSKeywords import DNSKeywords
from ONAPLibrary.SocketKeywords import SocketKeywords
from ONAPLibrary.UUIDKeywords import UUIDKeywords
+from ONAPLibrary.HTTPKeywords import HTTPKeywords
class Utilities(HybridCore):
@@ -25,6 +26,7 @@ class Utilities(HybridCore):
self.keyword_implementors = [
DNSKeywords(),
SocketKeywords(),
- UUIDKeywords()
+ UUIDKeywords(),
+ HTTPKeywords()
]
HybridCore.__init__(self, self.keyword_implementors)