Skip to content

Commit

Permalink
Drop call to escape_non_unicode_symbols
Browse files Browse the repository at this point in the history
which was removed from allure-python-commons in 2.13.0 .
  • Loading branch information
nsoranzo committed Mar 1, 2023
1 parent c5050d6 commit 40ebd52
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 40ebd52

Please sign in to comment.