From: DR695H Date: Thu, 22 Aug 2019 21:52:53 +0000 (-0400) Subject: use unicode encoding for the string X-Git-Tag: 6.0.0-ONAP~24 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F63%2F94163%2F1;p=testsuite%2Fpython-testing-utils.git use unicode encoding for the string Issue-ID: TEST-184 Change-Id: I41dbeecd8787efaf96b15f5961f00d7eadd3f4ae Signed-off-by: DR695H --- diff --git a/robotframework-onap/ONAPLibrary/RequestsHelper.py b/robotframework-onap/ONAPLibrary/RequestsHelper.py index 7dc5903..f3a0ad5 100644 --- a/robotframework-onap/ONAPLibrary/RequestsHelper.py +++ b/robotframework-onap/ONAPLibrary/RequestsHelper.py @@ -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