Fix tests, checkstyle issues

This commit is contained in:
Soby Chacko
2021-06-07 18:54:32 -04:00
parent 3b9b23304c
commit e886c8375e
6 changed files with 9 additions and 3 deletions

View File

@@ -86,7 +86,7 @@ public class RabbitSourceListenerTests {
rabbitTemplate.convertAndSend("scsapp-testex", "", "hello");
OutputDestination target = context.getBean(OutputDestination.class);
Message<byte[]> sourceMessage = target.receive(600000, "rabbitSupplier-out-0");
Message<byte[]> sourceMessage = target.receive(600000, "output");
final String actual = new String(sourceMessage.getPayload());
assertThat(actual).isEqualTo("hello");