We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d974939 commit 45ecba3Copy full SHA for 45ecba3
src/test/java/com/rabbitmq/stream/codec/CodecsTest.java
@@ -78,7 +78,7 @@ static Iterable<Codec> readCreatedMessage() {
78
new SwiftMqCodec());
79
}
80
81
- static Stream<Codec> codecs() {
+ static Stream<Codec> allAmqpCodecs() {
82
return Stream.of(new QpidProtonCodec(), new SwiftMqCodec());
83
84
@@ -513,7 +513,7 @@ void notSupportedTypes(Supplier<MessageBuilder> messageBuilderSupplier) {
513
514
515
@ParameterizedTest
516
- @MethodSource("codecs")
+ @MethodSource("allAmqpCodecs")
517
void supportAmqpValueBody(Codec codec) {
518
Function<Object, Message> encodeDecode =
519
content -> {
0 commit comments