Skip to content

Commit 2ca60da

Browse files
committed
fix: sometimes report card has only 6 columns
1 parent 2c978d4 commit 2ca60da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parser/report-card.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ func (p reportCardParser) parse() ([]*ModuleReport, error) {
7474

7575
switch p.getRowType(s) {
7676
case reportCardTableHeader:
77-
if s.Children().Length() != 7 {
77+
if s.Children().Length() < 6 {
7878
globalErr = UnknownReportCardStructure
7979
return
8080
}

0 commit comments

Comments
 (0)