From b8a680ce58c1b7bd07f6342951f1705e5923b38f Mon Sep 17 00:00:00 2001 From: Rebekah Rudd Date: Tue, 19 Nov 2024 14:52:43 -0500 Subject: [PATCH] fix: changed the color of the failing command output in check_result.py --- gatorgrade/output/check_result.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gatorgrade/output/check_result.py b/gatorgrade/output/check_result.py index 45547035..fe5a58f1 100644 --- a/gatorgrade/output/check_result.py +++ b/gatorgrade/output/check_result.py @@ -44,7 +44,7 @@ def display_result(self, show_diagnostic: bool = False) -> str: icon_color = "green" if self.passed else "red" message = f"[{icon_color}]{icon}[/] {self.description}" if not self.passed and show_diagnostic: - message += f"\n[yellow] → Failing command output: {self.diagnostic}" + message += f"\n[blue] → Failing command output: [green]{self.diagnostic}" return message def __repr__(self):