Skip to content

Commit

Permalink
Remove duplicate call on makeMatrix.
Browse files Browse the repository at this point in the history
  • Loading branch information
aljones15 committed Sep 30, 2024
1 parent aaa4096 commit 214ad25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/handlers.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export function makeTemplateData({reports}) {
const matrix = makeMatrix(report);
// only include a matrix if it has test results to report
if(matrix.rows.length) {
context.matrices.push(makeMatrix(report));
context.matrices.push(matrix);
}
}
// reports can have summaries
Expand Down

0 comments on commit 214ad25

Please sign in to comment.