Skip to content

Commit

Permalink
Merge pull request #16 from MeasureAuthoringTool/feature/MAT-7238-exc…
Browse files Browse the repository at this point in the history
…el-strat-row-color

MAT-7238: fix indexing issue impacting failed stratification row colo…
  • Loading branch information
nmorasb committed May 28, 2024
2 parents 573a297 + d3dc264 commit ccec783
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/export.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -395,14 +395,14 @@ export class ExportService {
groupedStratificationDto.stratificationDtos?.forEach((strat) => {
headerRowData.push(strat.name);
this.populateStratExpected(testCaseData, strat, index, failedIndexes);
index += 1;
});

groupedStratificationDto.stratificationDtos?.forEach((strat) => {
headerRowData.push(strat.name);
this.populateStratActual(testCaseData, strat);
});

index += 1;
this.populateTestCase(testCaseData, result);
testCasesData.push(testCaseData);
firstRow = firstRowData;
Expand Down

0 comments on commit ccec783

Please sign in to comment.