use unicode encoding for the string 63/94163/1
authorDR695H <dr695h@att.com>
Thu, 22 Aug 2019 21:52:53 +0000 (17:52 -0400)
committerDR695H <dr695h@att.com>
Thu, 22 Aug 2019 21:52:53 +0000 (17:52 -0400)
Issue-ID: TEST-184
Change-Id: I41dbeecd8787efaf96b15f5961f00d7eadd3f4ae
Signed-off-by: DR695H <dr695h@att.com>
robotframework-onap/ONAPLibrary/RequestsHelper.py

index 7dc5903..f3a0ad5 100644 (file)
@@ -90,9 +90,9 @@ class RequestsHelper(object):
 
     @staticmethod
     def _format_md5(md5_input):
-        if md5_input is not None:
+        if md5_input is not None and isinstance(md5_input, str):
             md5 = hashlib.md5()
-            md5.update(md5_input)
+            md5.update(md5_input.encode('utf-8'))
             return Base64Keywords().base64_encode(md5.hexdigest())
         else:
-            return None
\ No newline at end of file
+            return None