From 09ee232e41a0199a98699253cf06e64b6004469d Mon Sep 17 00:00:00 2001 From: Hook25 Date: Fri, 15 Mar 2024 10:51:01 +0100 Subject: [PATCH] Uppercase Checkbox --- checkbox-ng/plainbox/impl/session/remote_assistant.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/checkbox-ng/plainbox/impl/session/remote_assistant.py b/checkbox-ng/plainbox/impl/session/remote_assistant.py index 58c40410a7..97547dfc5e 100644 --- a/checkbox-ng/plainbox/impl/session/remote_assistant.py +++ b/checkbox-ng/plainbox/impl/session/remote_assistant.py @@ -769,14 +769,14 @@ def resume_by_id(self, session_id=None, overwrite_result_dict={}): if "noreturn" in the_job.get_flag_set(): result_dict["outcome"] = IJobResult.OUTCOME_PASS result_dict["comments"] = ( - "Job crashed the machine or the checkbox agent, " + "Job crashed the machine or the Checkbox agent, " "automatically marking it as passed after resuming " "the session because it has the noreturn flag" ) else: result_dict["outcome"] = IJobResult.OUTCOME_CRASH result_dict["comments"] = ( - "Job crashed the machine or the checkbox agent, " + "Job crashed the machine or the Checkbox agent, " "automatically marking it as crashed after resuming " "the session" )