Skip to content

Commit

Permalink
fix: sometimes report card has only 6 columns
Browse files Browse the repository at this point in the history
  • Loading branch information
Lutonite committed Feb 22, 2024
1 parent 2c978d4 commit 2ca60da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser/report-card.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func (p reportCardParser) parse() ([]*ModuleReport, error) {

switch p.getRowType(s) {
case reportCardTableHeader:
if s.Children().Length() != 7 {
if s.Children().Length() < 6 {
globalErr = UnknownReportCardStructure
return
}
Expand Down

0 comments on commit 2ca60da

Please sign in to comment.