Bug 1800494 - Stop using dim terminal style, r=ahochheiden

This appears to be unsupported by blessed. Instead use 'bright_black' which is typically
mapped to some shade of grey.

Differential Revision: https://phabricator.services.mozilla.com/D162094
This commit is contained in:
James Graham 2022-11-15 17:39:02 +00:00
parent e8e1f6902e
commit 081f412666

View File

@ -30,7 +30,7 @@ color_dict = {
"bold": "bold",
"grey": "grey",
"normal": "normal",
"dim": "dim",
"bright_black": "bright_black",
}
@ -183,7 +183,7 @@ class MachFormatter(base.BaseFormatter):
return rv
def _format_stack(self, stack):
return "\n%s\n" % self.color_formatter.dim(stack.strip("\n"))
return "\n%s\n" % self.color_formatter.bright_black(stack.strip("\n"))
def _format_suite_summary(self, suite, summary):
count = summary["counts"]