summaryrefslogtreecommitdiffstats
path: root/robotframework-onap/ONAPLibrary/Utilities.py
diff options
context:
space:
mode:
authorDR695H <dr695h@att.com>2019-07-24 16:37:01 -0400
committerDR695H <dr695h@att.com>2019-07-24 16:37:01 -0400
commit7145fe029d00811ac04fca0c4891c04087edf5b0 (patch)
treec6b01ab59039fc5c9325d1062e80edab4f42d658 /robotframework-onap/ONAPLibrary/Utilities.py
parent68fcf934b2152d75d0ad11ff1ab291fdff221c44 (diff)
remove the last of the SO robot code
Issue-ID: TEST-179 Change-Id: I0b0c223e3c6007cae213b35a77232b05af50ef80 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 5751e21..4773432 100644
--- a/robotframework-onap/ONAPLibrary/Utilities.py
+++ b/robotframework-onap/ONAPLibrary/Utilities.py
@@ -18,6 +18,7 @@ from ONAPLibrary.SocketKeywords import SocketKeywords
from ONAPLibrary.UUIDKeywords import UUIDKeywords
from ONAPLibrary.HTTPKeywords import HTTPKeywords
from ONAPLibrary.Base64Keywords import Base64Keywords
+from ONAPLibrary.VariableKeywords import VariableKeywords
class Utilities(HybridCore):
@@ -31,6 +32,7 @@ class Utilities(HybridCore):
SocketKeywords(),
UUIDKeywords(),
HTTPKeywords(),
- Base64Keywords()
+ Base64Keywords(),
+ VariableKeywords()
]
HybridCore.__init__(self, self.keyword_implementors)