From b73e4a9ed5a3153220dcaec257d9c6165d2354c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Sat, 13 Aug 2022 22:06:49 +0100 Subject: [PATCH] parser/gotest: Remove unnecessary if statement when creating a package We only execute this branch when we've captured some global output, so no need to check that again. --- parser/gotest/report_builder.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser/gotest/report_builder.go b/parser/gotest/report_builder.go index 388d122..de8888c 100644 --- a/parser/gotest/report_builder.go +++ b/parser/gotest/report_builder.go @@ -223,7 +223,7 @@ func (b *reportBuilder) CreatePackage(name, result string, duration time.Duratio Name: name, Output: b.output.Get(globalID), } - } else if b.output.Contains(globalID) { + } else { pkg.Output = b.output.Get(globalID) } b.packages = append(b.packages, pkg)