summaryrefslogtreecommitdiffstats
path: root/robotframework-onap/ONAPLibrary/RequestSOKeywords.py
diff options
context:
space:
mode:
authorDR695H <dr695h@att.com>2019-06-13 14:40:27 -0400
committerGary Wu <gary.wu@futurewei.com>2019-06-13 22:05:56 +0000
commit294f996db033c0f8be6143dad201dc9d8b4b6959 (patch)
tree94998644fda9a1b13ed4ffb0c786ab4e4f9170c6 /robotframework-onap/ONAPLibrary/RequestSOKeywords.py
parent0932c69548b13eab93f46e81f939dec2803cd741 (diff)
move dns and uuid to the new format of keywords
Change-Id: I07612b85424c4d687b0c551ecc7727920d2736b0 Issue-ID: TEST-164 Signed-off-by: DR695H <dr695h@att.com>
Diffstat (limited to 'robotframework-onap/ONAPLibrary/RequestSOKeywords.py')
-rw-r--r--robotframework-onap/ONAPLibrary/RequestSOKeywords.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/robotframework-onap/ONAPLibrary/RequestSOKeywords.py b/robotframework-onap/ONAPLibrary/RequestSOKeywords.py
index 63ae063..fa32795 100644
--- a/robotframework-onap/ONAPLibrary/RequestSOKeywords.py
+++ b/robotframework-onap/ONAPLibrary/RequestSOKeywords.py
@@ -16,8 +16,6 @@ from robot.api import logger
from robot.api.deco import keyword
from robot.libraries.BuiltIn import BuiltIn
-from eteutils.UUID import UUID
-
class RequestSOKeywords(object):
"""SO is an ONAP testing library for Robot Framework that provides functionality for interacting with the serivce
@@ -26,7 +24,6 @@ class RequestSOKeywords(object):
def __init__(self):
super(RequestSOKeywords, self).__init__()
self.application_id = "robot-ete"
- self.uuid = UUID()
self.builtin = BuiltIn()
self.base_keywords = BaseSOKeywords()