diff options
author | DR695H <dr695h@att.com> | 2019-07-26 15:56:10 -0400 |
---|---|---|
committer | Brian Freeman <bf1936@att.com> | 2019-07-29 21:40:48 +0000 |
commit | 0605e351036d386b9ca7282dee848b0ce1848274 (patch) | |
tree | a41683f4adf1ee2b70b4cd9f02429bc3aad71d2d /robotframework-onap/ONAPLibrary/Utilities.py | |
parent | ce8a184d15de4298336557fdc48328d3e6c3558e (diff) |
remove the 200 for sdc too
Issue-ID: TEST-174
Change-Id: I617b1efd11867b13e318387c49c29030c27bbe49
Signed-off-by: DR695H <dr695h@att.com>
Diffstat (limited to 'robotframework-onap/ONAPLibrary/Utilities.py')
-rw-r--r-- | robotframework-onap/ONAPLibrary/Utilities.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/robotframework-onap/ONAPLibrary/Utilities.py b/robotframework-onap/ONAPLibrary/Utilities.py index 4773432..5751e21 100644 --- a/robotframework-onap/ONAPLibrary/Utilities.py +++ b/robotframework-onap/ONAPLibrary/Utilities.py @@ -18,7 +18,6 @@ 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): @@ -32,7 +31,6 @@ class Utilities(HybridCore): SocketKeywords(), UUIDKeywords(), HTTPKeywords(), - Base64Keywords(), - VariableKeywords() + Base64Keywords() ] HybridCore.__init__(self, self.keyword_implementors) |