From 50eda82e27c5e8b80447b3ba3b5baa496aa6a392 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sat, 7 May 2022 14:09:11 +0300 Subject: [PATCH] Fix test --- docs | 2 +- platformio/test/runners/base.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs b/docs index bd05ccee..7ea8af92 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit bd05ccee932129856ccd4c46a5abe67594402b72 +Subproject commit 7ea8af9265f7fac72e9a116f14d9915526ddaa49 diff --git a/platformio/test/runners/base.py b/platformio/test/runners/base.py index f5dfd83f..2e1634af 100644 --- a/platformio/test/runners/base.py +++ b/platformio/test/runners/base.py @@ -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, )