diff --git a/internal/report/report.go b/internal/report/report.go index 6d470f7..09a7567 100644 --- a/internal/report/report.go +++ b/internal/report/report.go @@ -87,7 +87,7 @@ func CountChecksPassedOverall(checks []yatas.Check) (int, int) { func PrettyPrintChecks(checks []yatas.Tests, c *yatas.Config) { flag.Parse() for _, tests := range checks { - fmt.Println("\nšŸ”„ Account:", tests.Account, "šŸ”„") + fmt.Println("\nAccount:", tests.Account) if *resume { ok, all := CountChecksPassedOverall(tests.Checks) fmt.Printf("\t%d/%d checks passed\n", ok, all)