Skip to content

Commit

Permalink
MAT-7933 fixed the naming conventions
Browse files Browse the repository at this point in the history
  • Loading branch information
sb-prateekkeerthi committed Nov 29, 2024
1 parent 1bc540c commit 1517847
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public void updateQICoreTestCaseStratifications(MeasureRepository measureReposit

if (matchingGroupStratification.isPresent()
&& stratificationValue.getPopulationValues() != null) {
List<TestCasePopulationValue> filteredPopulationValues =
List<TestCasePopulationValue> filteredStratifiedPopulationValues =
stratificationValue.getPopulationValues().stream()
.filter(
populationValue ->
Expand All @@ -65,7 +65,7 @@ public void updateQICoreTestCaseStratifications(MeasureRepository measureReposit
.equalsIgnoreCase(
populationValue.getName().getDisplay())))
.collect(Collectors.toList());
stratificationValue.setPopulationValues(filteredPopulationValues);
stratificationValue.setPopulationValues(filteredStratifiedPopulationValues);
}
}
}
Expand Down

0 comments on commit 1517847

Please sign in to comment.