Skip to content

Commit

Permalink
Merge pull request #1357 from nsoranzo/drop_escape_non_unicode_symbols
Browse files Browse the repository at this point in the history
Drop call to ``escape_non_unicode_symbols``
  • Loading branch information
mvdbeek committed Mar 1, 2023
2 parents c5050d6 + 40ebd52 commit aea0bf0
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions planemo/reports/allure.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
LinkType,
)
from allure_commons.utils import (
escape_non_unicode_symbols,
md5,
platform_label,
uuid4,
Expand Down Expand Up @@ -117,9 +116,7 @@ def process_test_case(self, test_case, file_modication_datetime=None):
self._record_tool_link(test_result, tool_id)
self._record_status(test_result, test_data)
if test_result.status in [Status.BROKEN, Status.FAILED]:
test_result.statusDetails = StatusDetails(
message=escape_non_unicode_symbols(problem_message or "Unknown problem"), trace=None
)
test_result.statusDetails = StatusDetails(message=(problem_message or "Unknown problem"), trace=None)

self.lifecycle.write_test_case()

Expand Down

0 comments on commit aea0bf0

Please sign in to comment.