Skip to content

Commit

Permalink
MAT-4091 add period
Browse files Browse the repository at this point in the history
  • Loading branch information
adongare committed Nov 1, 2024
1 parent 7b6a8c6 commit 40813f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public String getLibraryCql(String name, String version, String accessToken) {
return null;
} catch (HttpClientErrorException ex) {
throw new ResourceNotFoundException(
"Library resource " + name + " version '" + version + "' is not found");
"Library resource " + name + " version '" + version + "' is not found.");
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ void getLibraryCqlWhenLibraryNotFound() {
() -> cqlLibraryService.getLibraryCql(cqlLibraryName, cqlLibraryVersion, accessToken));
assertThat(
ex.getMessage(),
is(equalTo("Library resource FHIRHelpers version '1.0.000' is not found")));
is(equalTo("Library resource FHIRHelpers version '1.0.000' is not found.")));
}

@Test
Expand Down

0 comments on commit 40813f2

Please sign in to comment.