Skip to content

Commit

Permalink
Merge pull request #725 from MeasureAuthoringTool/MAT-7058
Browse files Browse the repository at this point in the history
MAT-7058 Information Disclosure for measure-steward page resulting in the feature not functioning for that measure
  • Loading branch information
adongare authored Sep 24, 2024
2 parents eb0fdf6 + 9a01781 commit c63de02
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
<dependency>
<groupId>gov.cms.madie</groupId>
<artifactId>madie-java-models</artifactId>
<version>0.6.63-SNAPSHOT</version>
<version>0.6.64-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>gov.cms.madie</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,12 +170,13 @@ public void testUpdatePassed() throws Exception {
String measureId = "f225481c-921e-4015-9e14-e5046bfac9ff";
String measureName = "TestMeasure";
Organization steward =
Organization.builder().name("d0cc18ce-63fd-4b94-b713-c1d9fd6b2329").build();
Organization.builder().id("d0cc18ce-63fd-4b94-b713-c1d9fd6b2329").name("ICF").build();
String description = "TestDescription";
String copyright = "TestCopyright";
String disclaimer = "TestDisclaimer";
String rationale = "TestRationale";
List<Organization> developers = List.of(Organization.builder().name("TestDeveloper").build());
List<Organization> developers =
List.of(Organization.builder().id("12-34-45").name("TestDeveloper").build());
String guidance = "TestGuidance";
String libName = "TestLib";
String ecqmTitle = "ecqmTitle";
Expand Down Expand Up @@ -254,12 +255,13 @@ public void testUpdatePassedLogDeleted() throws Exception {
String measureId = "f225481c-921e-4015-9e14-e5046bfac9ff";
String measureName = "TestMeasure";
Organization steward =
Organization.builder().name("d0cc18ce-63fd-4b94-b713-c1d9fd6b2329").build();
Organization.builder().id("d0cc18ce-63fd-4b94-b713-c1d9fd6b2329").name("ICF").build();
String description = "TestDescription";
String copyright = "TestCopyright";
String disclaimer = "TestDisclaimer";
String rationale = "TestRationale";
List<Organization> developers = List.of(Organization.builder().name("TestDeveloper").build());
List<Organization> developers =
List.of(Organization.builder().id("12-34-45").name("TestDeveloper").build());
String guidance = "TestGuidance";
String libName = "TestLib";
String ecqmTitle = "ecqmTitle";
Expand Down

0 comments on commit c63de02

Please sign in to comment.