Skip to content

Commit

Permalink
Fixing build breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
conniey committed Mar 14, 2022
1 parent 9f3b6d5 commit 3c2bfe7
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 @@ -46,6 +46,6 @@ public static void main(String[] args) {

// Serialize the playing card object and write to the output stream.
MessageWithMetadata message = serializer.serializeMessageData(playingCard,
TypeReference.createInstance(BinaryContent.class));
TypeReference.createInstance(MessageWithMetadata.class));
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public void registerAndGetSchema() {

// Act & Assert
final MessageWithMetadata encodedMessage = encoder.serializeMessageData(cards,
TypeReference.createInstance(BinaryContent.class));
TypeReference.createInstance(MessageWithMetadata.class));
assertNotNull(encodedMessage);

final byte[] outputArray = encodedMessage.getBodyAsBinaryData().toBytes();
Expand Down

0 comments on commit 3c2bfe7

Please sign in to comment.