Skip to content

Commit ef9ed3b

Browse files
committed
fixup
1 parent f513846 commit ef9ed3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/Test/Integration/TestQueueDeclare.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ async Task f()
9797
// sleep for a random amount of time to increase the chances
9898
// of thread interleaving. MK.
9999
await Task.Delay(S_Random.Next(5, 50));
100-
string queueName = $"{_testDisplayName}-{Guid.NewGuid()}";
100+
string queueName = GenerateQueueName();
101101
QueueDeclareOk r = await _channel.QueueDeclareAsync(queue: queueName,
102102
durable: false, exclusive: true, autoDelete: false);
103103
Assert.Equal(queueName, r.QueueName);

0 commit comments

Comments
 (0)