fix(cli): replace nerd font symbols with unicode symbols

This commit is contained in:
Gabriel Holodak 2024-10-27 11:40:01 -04:00 committed by Amaan Qureshi
parent 8368f9994d
commit 8de3a2ee13

View file

@ -358,7 +358,7 @@ fn run_tests(
if attributes.skip {
println!(
"{:>3}. {}",
"{:>3}. {}",
opts.test_num,
paint(opts.color.then_some(AnsiColor::Yellow), &name),
);
@ -367,7 +367,7 @@ fn run_tests(
if !attributes.platform {
println!(
"{:>3}. {}",
"{:>3}. {}",
opts.test_num,
paint(opts.color.then_some(AnsiColor::Magenta), &name),
);
@ -387,7 +387,7 @@ fn run_tests(
if attributes.error {
if tree.root_node().has_error() {
println!(
"{:>3}. {}",
"{:>3}. {}",
opts.test_num,
paint(opts.color.then_some(AnsiColor::Green), &name)
);
@ -418,7 +418,7 @@ fn run_tests(
));
}
println!(
"{:>3}. {}",
"{:>3}. {}",
opts.test_num,
paint(opts.color.then_some(AnsiColor::Red), &name)
);