Skip to content

Commit

Permalink
set new line to result.message
Browse files Browse the repository at this point in the history
  • Loading branch information
Konboi committed Apr 27, 2023
1 parent 3ba2914 commit 4a18a8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions launchable/commands/record/case_event.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def stderr(case: TestCase) -> str:
"""
case for:
<testcase>
<failure message="...>...</failure>
<failure message="...">...</failure>
</testcase>
"""
stderr = ""
Expand All @@ -112,7 +112,7 @@ def stderr(case: TestCase) -> str:
if result.message and result.text:
stderr = stderr + result.message + "\n" + result.text
elif result.message:
stderr = stderr + result.message
stderr = stderr + result.message + "\n"
elif result.text:
stderr = stderr + result.text

Expand Down

0 comments on commit 4a18a8f

Please sign in to comment.