Skip to content

Commit

Permalink
fixed build issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
mahammedtaheer committed Sep 8, 2023
1 parent 810a069 commit 1451223
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions kernel/kernel-keymanager-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,11 @@
<artifactId>nimbus-jose-jwt</artifactId>
<version>${com.nimbusds.nimbus-jose-jwt.version}</version>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
<version>3.1.7.RELEASE</version>
</dependency>
</dependencies>

<distributionManagement>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ public void encryptWithMultipleAliasReferenceId() throws Exception {
ResponseWrapper<SignatureResponseDto> responseWrapper = objectMapper.readValue(
result.getResponse().getContentAsString(), new TypeReference<ResponseWrapper<SignatureResponseDto>>() {
});
assertThat(responseWrapper.getErrors().get(0).getErrorCode(), is("KER-KMA-005"));
assertThat(responseWrapper.getErrors().get(0).getErrorCode(), is("KER-KMS-003"));
}


Expand Down Expand Up @@ -371,7 +371,7 @@ public void encryptWithEmptyAliasReferenceId() throws Exception {
ResponseWrapper<SignatureResponseDto> responseWrapper = objectMapper.readValue(
result.getResponse().getContentAsString(), new TypeReference<ResponseWrapper<SignatureResponseDto>>() {
});
assertThat(responseWrapper.getErrors().get(0).getErrorCode(), is("KER-KMA-005"));
assertThat(responseWrapper.getErrors().get(0).getErrorCode(), is("KER-KMS-003"));
}

}

0 comments on commit 1451223

Please sign in to comment.