Skip to content

Commit

Permalink
MAT-7507 ignore extendedData for Bonnie imported test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
Cecilia Liu committed Aug 7, 2024
1 parent 24e3951 commit f913364
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
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.53-SNAPSHOT</version>
<version>0.6.54-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 @@ -6,6 +6,7 @@
import org.springframework.format.annotation.DateTimeFormat;

import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

import lombok.AllArgsConstructor;
import lombok.Builder;
Expand All @@ -20,6 +21,7 @@
@AllArgsConstructor
@Getter
@Setter
@JsonIgnoreProperties(ignoreUnknown = true)
public class TestCaseJson {
private String _id;
private String qdmVersion = "5.6";
Expand Down

0 comments on commit f913364

Please sign in to comment.