Skip to content

Commit

Permalink
style(report): removed emoji in account line
Browse files Browse the repository at this point in the history
  • Loading branch information
StanGirard committed Aug 26, 2022
1 parent 296f9aa commit 669e5de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/report/report.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 669e5de

Please sign in to comment.