From b574fab1bd43d365abe7c73c71da406d41f1060e Mon Sep 17 00:00:00 2001 From: StanGirard Date: Tue, 23 Aug 2022 13:46:18 +0200 Subject: [PATCH] fix(compare): left a print in the code --- internal/report/report.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/report/report.go b/internal/report/report.go index 4d29bcf..8f99d47 100644 --- a/internal/report/report.go +++ b/internal/report/report.go @@ -125,11 +125,9 @@ func ComparePreviousWithNew(previous []results.Tests, new []results.Tests) []res found := false for _, previousTests := range previous { for _, previousCheck := range previousTests.Checks { - fmt.Println("Previous account ", previousTests.Account, " current account ", tests.Account) if check.Id == previousCheck.Id && tests.Account == previousTests.Account { if check.Status != previousCheck.Status { checks = append(checks, check) - fmt.Println("Found check ", check.Id, " with status ", check.Status, " in previous results") } else { found = true