Skip to content

Commit

Permalink
Merge pull request #2984 from andq/main
Browse files Browse the repository at this point in the history
Fix typo in docs
  • Loading branch information
olegz authored Aug 7, 2024
2 parents 71e0c92 + 1b4e3fb commit dffbe6d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@ public void testMultipleFunctions() {
Message<byte[]> outputMessage = outputDestination.receive(0, "uppercase-out-0");
assertThat(outputMessage.getPayload()).isEqualTo("HELLO".getBytes());
outputMessage = outputDestination.receive(0, "reverse-out-1");
outputMessage = outputDestination.receive(0, "reverse-out-0");
assertThat(outputMessage.getPayload()).isEqualTo("olleH".getBytes());
}
}
Expand Down

0 comments on commit dffbe6d

Please sign in to comment.