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" )