Skip to content

Commit

Permalink
fix reference to populationValues as List
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmcphillips committed Oct 23, 2023
1 parent 75af03e commit 112ca5c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>gov.cms.madie</groupId>
<artifactId>madie-java-models</artifactId>
<version>0.6.9-SNAPSHOT</version>
<version>0.6.10-SNAPSHOT</version>
<name>madie-java-models</name>
<description>Java based models for MADiE microservices</description>
<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
import lombok.Data;
import lombok.NoArgsConstructor;

import java.util.List;

@Data
@Builder
@NoArgsConstructor
Expand All @@ -14,6 +16,6 @@ public class TestCaseStratificationValue {
private String name;
private Object expected;
private Object actual;
private TestCasePopulationValue populationValues;
private List<TestCasePopulationValue> populationValues;
}

0 comments on commit 112ca5c

Please sign in to comment.