From c47fff04d2f18946f52aa98db3f9bd92d88cfc35 Mon Sep 17 00:00:00 2001 From: Hristo Georgiev <6043312+hristog@users.noreply.github.com> Date: Sun, 3 Mar 2024 19:44:04 +0000 Subject: [PATCH] Add a newline when reporting test failures --- crates/reporting/src/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/reporting/src/cli.rs b/crates/reporting/src/cli.rs index ca8dcaf100..401cb07975 100644 --- a/crates/reporting/src/cli.rs +++ b/crates/reporting/src/cli.rs @@ -32,7 +32,7 @@ impl Problems { const YELLOW: &str = ANSI_STYLE_CODES.yellow; print!( - "{}{}\x1B[39m {} and {}{}\x1B[39m {} found in {} ms", + "{}{}\x1B[39m {} and {}{}\x1B[39m {} found in {} ms\n", match self.errors { 0 => GREEN, _ => YELLOW,