diff --git a/tests/system/shared/workarounds.py b/tests/system/shared/workarounds.py index 945dc5cdf50..9ce6f00a134 100644 --- a/tests/system/shared/workarounds.py +++ b/tests/system/shared/workarounds.py @@ -99,8 +99,7 @@ class JIRA: test.fatal("No resolution info for %s" % bug) self._resolution = 'Done' else: - if isinstance(data, (bytes)): - data = str(data) + data = stringify(data) data = data.replace("\r", "").replace("\n", "") resPattern = re.compile('(?P.*?)') resolution = resPattern.search(data)