Skip to content

Commit dab7deb

Browse files
committed
Use fixed value in test
Random value could interfere with other assertions.
1 parent c744264 commit dab7deb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/rabbitmq/client/amqp/impl/SourceFiltersTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ void streamFilteringWithClientSideFiltering() {
361361
@BrokerVersionAtLeast(RABBITMQ_4_1_0)
362362
void filterExpressionApplicationProperties() {
363363
int messageCount = 10;
364-
UUID uuid = UUID.randomUUID();
364+
UUID uuid = UUID.nameUUIDFromBytes("foobar".getBytes(UTF_8));
365365
long now = System.currentTimeMillis();
366366
byte[] binary = "hello".getBytes(UTF_8);
367367
publish(messageCount, msg -> msg.property("foo", true));

0 commit comments

Comments
 (0)