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 671e1b1 commit ecb1e78Copy full SHA for ecb1e78
src/test/java/com/rabbitmq/client/amqp/impl/SourceFiltersTest.java
@@ -363,7 +363,7 @@ void filterExpressionApplicationProperties() {
363
int messageCount = 10;
364
UUID uuid = UUID.randomUUID();
365
long now = System.currentTimeMillis();
366
- byte[] binary = binaryArbitrary.sample();
+ byte[] binary = "hello".getBytes(UTF_8);
367
publish(messageCount, msg -> msg.property("foo", true));
368
publish(messageCount, msg -> msg.property("foo", 42));
369
publish(messageCount, msg -> msg.property("foo", 42.1));
0 commit comments