From 0a46c99a68fdaa0a075217aef88dcbf17033f0d5 Mon Sep 17 00:00:00 2001 From: finn Date: Thu, 21 Dec 2023 10:38:30 -0800 Subject: [PATCH] fix a bug causing known vectors with no implementations to disappear from the final report in some cases specifically triggered when there are some implemented vectors in the feature, previously causing the test suite parser to rebuild the map for that feature --- reports/reports.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/reports/reports.go b/reports/reports.go index 1caf3f8..0080054 100644 --- a/reports/reports.go +++ b/reports/reports.go @@ -109,8 +109,6 @@ func (s SDKMeta) buildReport(suites []junit.Suite) (Report, error) { continue } - results[suiteName] = make(map[string]Result) - for _, test := range suite.Tests { testName := test.Name if s.VectorRegex != nil {