summaryrefslogtreecommitdiffstats
path: root/robotframework-onap/tests/vcpeutils/SoUtils_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'robotframework-onap/tests/vcpeutils/SoUtils_test.py')
-rw-r--r--robotframework-onap/tests/vcpeutils/SoUtils_test.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/robotframework-onap/tests/vcpeutils/SoUtils_test.py b/robotframework-onap/tests/vcpeutils/SoUtils_test.py
index 22afed6..cce3936 100644
--- a/robotframework-onap/tests/vcpeutils/SoUtils_test.py
+++ b/robotframework-onap/tests/vcpeutils/SoUtils_test.py
@@ -1,14 +1,17 @@
from unittest import TestCase
-from vcpeutils.SoUtils import *
+from vcpeutils.SoUtils import SoUtils
class SoUtilsTest(TestCase):
-
def test(self):
input_dict = dict()
SoUtils.add_related_instance(input_dict, "test", "test2")
results = dict()
results['relatedInstanceList'] = [{"relatedInstance": {"instanceId": "test", "modelInfo": "test2"}}]
- self.assertDictContainsSubset(results, input_dict)
+ self.assertEqual(results, self.extract_dict_a_from_b(results,input_dict))
+
+ @staticmethod
+ def extract_dict_a_from_b(a, b):
+ return dict([(k, b[k]) for k in a.keys() if k in b.keys()])