moving http to new keyword format
Issue-ID: TEST-158
Change-Id: Ib0accb92a39a50fdc63227768a5fe628930c91df
Signed-off-by: DR695H <dr695h@att.com>
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.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 @@
self.keyword_implementors = [
DNSKeywords(),
SocketKeywords(),
- UUIDKeywords()
+ UUIDKeywords(),
+ HTTPKeywords()
]
HybridCore.__init__(self, self.keyword_implementors)