parser/gotest: Remove unused runErrors field from reportBuilder

This commit is contained in:
Joël Stemmer 2022-07-20 14:29:24 +01:00
parent 01f2cdde22
commit d75fb6d4c3

View File

@ -23,7 +23,6 @@ type reportBuilder struct {
packages []gtr.Package
tests map[int]gtr.Test
buildErrors map[int]gtr.Error
runErrors map[int]gtr.Error
// state
nextID int // next free unused id
@ -43,7 +42,6 @@ func newReportBuilder() *reportBuilder {
return &reportBuilder{
tests: make(map[int]gtr.Test),
buildErrors: make(map[int]gtr.Error),
runErrors: make(map[int]gtr.Error),
nextID: 1,
output: collector.New(),
parentIDs: make(map[int]struct{}),