Skip to content

Commit

Permalink
fix: changed the color of the failing command output in check_result.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rebekahrudd committed Nov 19, 2024
1 parent 78fc5c8 commit b8a680c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gatorgrade/output/check_result.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit b8a680c

Please sign in to comment.