diff --git a/src/cli/test_command.zig b/src/cli/test_command.zig index 05b5d40588..b1f9b838b6 100644 --- a/src/cli/test_command.zig +++ b/src/cli/test_command.zig @@ -135,7 +135,7 @@ pub const CommandLineReporter = struct { } } - const line_color_code = if (comptime skip) "" else ""; + const line_color_code = if (comptime skip) "" else ""; if (Output.enable_ansi_colors_stderr) writer.print(comptime Output.prettyFmt(line_color_code ++ " {s}", true), .{display_label}) catch unreachable @@ -477,9 +477,7 @@ pub const TestCommand = struct { if (reporter.summary.expectations > 0) Output.prettyError(" {d:5>} expect() calls\n", .{reporter.summary.expectations}); - Output.prettyError( - \\ Ran {d} tests across {d} files - , .{ + Output.prettyError("Ran {d} tests across {d} files ", .{ reporter.summary.fail + reporter.summary.pass, test_files.len, });