From 84074a188c6ef877ebce5ac38bbc2a4709acc2f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Sun, 22 May 2022 00:50:12 +0100 Subject: [PATCH] parser/gotest: remove debugging printf from reportBuilder --- parser/gotest/report_builder.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/parser/gotest/report_builder.go b/parser/gotest/report_builder.go index b2ba2b5..23e85f3 100644 --- a/parser/gotest/report_builder.go +++ b/parser/gotest/report_builder.go @@ -1,7 +1,6 @@ package gotest import ( - "fmt" "strings" "time" @@ -245,7 +244,6 @@ func (b *reportBuilder) CreatePackage(name, result string, duration time.Duratio if b.subtestMode == IgnoreParentResults { t.Result = gtr.Pass } else if b.subtestMode == ExcludeParents { - fmt.Printf("excluding test %v\n", t.Name) continue } }