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 f513846 commit ef9ed3bCopy full SHA for ef9ed3b
projects/Test/Integration/TestQueueDeclare.cs
@@ -97,7 +97,7 @@ async Task f()
97
// sleep for a random amount of time to increase the chances
98
// of thread interleaving. MK.
99
await Task.Delay(S_Random.Next(5, 50));
100
- string queueName = $"{_testDisplayName}-{Guid.NewGuid()}";
+ string queueName = GenerateQueueName();
101
QueueDeclareOk r = await _channel.QueueDeclareAsync(queue: queueName,
102
durable: false, exclusive: true, autoDelete: false);
103
Assert.Equal(queueName, r.QueueName);
0 commit comments