From 8de3a2ee13d22f9a3bbcaffb1dc246ff78e33dfa Mon Sep 17 00:00:00 2001 From: Gabriel Holodak Date: Sun, 27 Oct 2024 11:40:01 -0400 Subject: [PATCH] fix(cli): replace nerd font symbols with unicode symbols --- cli/src/test.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cli/src/test.rs b/cli/src/test.rs index aca94574..90562afc 100644 --- a/cli/src/test.rs +++ b/cli/src/test.rs @@ -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) );