Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nkramer44 committed Nov 27, 2023
1 parent aae80d2 commit 39b92b7
Show file tree
Hide file tree
Showing 3 changed files with 1,085 additions and 26 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ void attestationClaimToSignableBytes() throws JsonProcessingException {

verify(objectMapperMock).writeValueAsString(any());
verifyNoMoreInteractions(objectMapperMock);
verify(xrplBinaryCodecMock).encodeForSigningClaim(any());
verify(xrplBinaryCodecMock).encode(any());
verifyNoMoreInteractions(xrplBinaryCodecMock);
}

Expand Down Expand Up @@ -382,7 +382,7 @@ void attestationCreateToSignableBytes() throws JsonProcessingException {

verify(objectMapperMock).writeValueAsString(any());
verifyNoMoreInteractions(objectMapperMock);
verify(xrplBinaryCodecMock).encodeForSigningClaim(any());
verify(xrplBinaryCodecMock).encode(any());
verifyNoMoreInteractions(xrplBinaryCodecMock);
}

Expand Down
Loading

0 comments on commit 39b92b7

Please sign in to comment.