[#5] Fix bad field naming
Signed-off-by: Ekaterina Lebedeva <ekaterina.lebedeva@yadro.com>
This commit is contained in:
parent
c77afdc879
commit
66bd0dc9d6
1 changed files with 17 additions and 17 deletions
|
@ -20,7 +20,7 @@ type coverline struct {
|
|||
StartCol int
|
||||
EndLine int
|
||||
EndCol int
|
||||
WTFnumber int
|
||||
Statements int
|
||||
IsCovered bool
|
||||
}
|
||||
|
||||
|
@ -65,7 +65,7 @@ func getSeqPoints(t testing.TB, di *compiler.DebugInfo, docs []int) []coverline
|
|||
StartCol: seqPoint.StartCol,
|
||||
EndLine: seqPoint.EndLine,
|
||||
EndCol: seqPoint.EndCol,
|
||||
WTFnumber: 1,
|
||||
Statements: 1,
|
||||
IsCovered: false,
|
||||
})
|
||||
}
|
||||
|
@ -120,7 +120,7 @@ func printToFile(t testing.TB, cov []coverline, name string) {
|
|||
if info.IsCovered {
|
||||
covered++
|
||||
}
|
||||
line := fmt.Sprintf("%s:%d.%d,%d.%d %d %d\n", info.Doc, info.StartLine, info.StartCol, info.EndLine, info.EndCol, info.WTFnumber, covered)
|
||||
line := fmt.Sprintf("%s:%d.%d,%d.%d %d %d\n", info.Doc, info.StartLine, info.StartCol, info.EndLine, info.EndCol, info.Statements, covered)
|
||||
_, err = f.WriteString(line)
|
||||
require.NoError(t, err)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue