From a3b1352b24567ad3a6938d2e61718d4910e237ca Mon Sep 17 00:00:00 2001 From: Christian Guinard <28689358+christiangnrd@users.noreply.github.com> Date: Thu, 9 Apr 2026 10:07:36 -0300 Subject: [PATCH] Fix styling in print_header function --- src/ParallelTestRunner.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ParallelTestRunner.jl b/src/ParallelTestRunner.jl index a049488..eada6f9 100644 --- a/src/ParallelTestRunner.jl +++ b/src/ParallelTestRunner.jl @@ -141,7 +141,7 @@ function print_header(ctx::TestIOContext, testgroupheader, workerheader) lock(ctx.lock) try # header top - printstyled(ctx.stdout, " "^(ctx.name_align + textwidth(testgroupheader) - 3), " │ ") + printstyled(ctx.stdout, " "^(ctx.name_align + textwidth(testgroupheader) - 3), " │ ", color = :white) printstyled(ctx.stdout, " Test │", color = :white) ctx.verbose && printstyled(ctx.stdout, " Init │", color = :white) VERSION >= v"1.11" && ctx.verbose && printstyled(ctx.stdout, " Compile │", color = :white)