cleanup how message factory is used
[testsuite/python-testing-utils.git] / robotframework-onap / ONAPLibrary / ProtobufKeywords.py
index 9fded9b..3e870d7 100644 (file)
@@ -8,14 +8,14 @@ class ProtobufKeywords(object):
 
     def __init__(self):
         super(ProtobufKeywords, self).__init__()
+        self.vpf = VESProtobuf()
 
     @keyword
     def compare_file_to_message(self, file_name, message):
         with open(file_name, "rb") as file_to_do:
             return self.compare_two_messages(file_to_do.read(), message)
 
-    @staticmethod
-    def compare_two_messages(left, right):
-        left_json = VESProtobuf.binary_to_json(left)
-        right_json = VESProtobuf.binary_to_json(right)
+    def compare_two_messages(self, left, right):
+        left_json = self.vpf.binary_to_json(left)
+        right_json = self.vpf.binary_to_json(right)
         return JSONKeywords().json_equals(left_json, right_json)