summaryrefslogtreecommitdiffstats
path: root/robotframework-onap/ONAPLibrary/Utilities.py
diff options
context:
space:
mode:
authorDR695H <dr695h@att.com>2019-07-31 17:42:10 -0400
committerDR695H <dr695h@att.com>2019-07-31 18:10:37 -0400
commit3db5715fbfa519dfabb2dab95630b294e7fd2857 (patch)
tree5305f6c901b511524d39403fd9ae470810a582cb /robotframework-onap/ONAPLibrary/Utilities.py
parent70ef70fb637f25a05d2d929121d3e5cdfd7e8035 (diff)
pull global vars from robot trial
Issue-ID: TEST-184 Change-Id: I008c9cfbc1ae65c7735fcab2b474a0cbf7ec2ca9 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)