This commit is contained in:
Ivan Kravets
2022-05-07 14:09:11 +03:00
parent daa3481862
commit 50eda82e27
2 changed files with 2 additions and 2 deletions

2
docs

Submodule docs updated: bd05ccee93...7ea8af9265

View File

@ -220,7 +220,7 @@ class TestRunnerBase:
test_case = TestCase(
name=data.get("name").strip(),
status=TestStatus.from_string(data.get("status")),
message=data.get("message", "").strip() or None,
message=(data.get("message") or "").strip() or None,
stdout=line,
source=source,
)