Skip to content

Commit

Permalink
DATAGO-76991 code complete
Browse files Browse the repository at this point in the history
  • Loading branch information
rudraneel-chakraborty committed Jun 7, 2024
1 parent fc9b0de commit ad7eeb6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@ void testUnsupportedMessageHandling() {

Exception e = assertThrows(IllegalArgumentException.class, () -> solacePersistentMessageHandler.onMessage(inboundMessage));

assertThat(e.getMessage()).isEqualTo("java.lang.UnsupportedOperationException: Could not find message processor for message of class " + ScanDataImportMessage.class.getCanonicalName());
assertThat(e.getMessage()).isEqualTo("java.lang.UnsupportedOperationException: Could not find message processor for message of class "
+ ScanDataImportMessage.class.getCanonicalName());

// message will be acked
verify(solacePersistentMessageHandler.getPersistentMessageReceiver(), times(1)).ack(inboundMessage);
Expand Down

0 comments on commit ad7eeb6

Please sign in to comment.