We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01f2cdd commit d75fb6dCopy full SHA for d75fb6d
parser/gotest/report_builder.go
@@ -23,7 +23,6 @@ type reportBuilder struct {
23
packages []gtr.Package
24
tests map[int]gtr.Test
25
buildErrors map[int]gtr.Error
26
- runErrors map[int]gtr.Error
27
28
// state
29
nextID int // next free unused id
@@ -43,7 +42,6 @@ func newReportBuilder() *reportBuilder {
43
42
return &reportBuilder{
44
tests: make(map[int]gtr.Test),
45
buildErrors: make(map[int]gtr.Error),
46
- runErrors: make(map[int]gtr.Error),
47
nextID: 1,
48
output: collector.New(),
49
parentIDs: make(map[int]struct{}),
0 commit comments