From c511b16fcac1d9981577b79edb10883f016aee51 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Tue, 17 Jun 2025 06:13:36 -0400 Subject: [PATCH] twister: remove useless . at end of message No need to have a period here. Signed-off-by: Anas Nashif --- scripts/pylib/twister/twisterlib/reports.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pylib/twister/twisterlib/reports.py b/scripts/pylib/twister/twisterlib/reports.py index d5677445acb..1f2911aa3b0 100644 --- a/scripts/pylib/twister/twisterlib/reports.py +++ b/scripts/pylib/twister/twisterlib/reports.py @@ -398,7 +398,7 @@ class Reporting: suite["reason"] = instance.reason else: suite["status"] = TwisterStatus.NONE - suite["reason"] = 'Unknown Instance status.' + suite["reason"] = 'Unknown Instance status' if instance.status != TwisterStatus.NONE: suite["execution_time"] = f"{float(handler_time):.2f}"