Skip to content

Commit 17e8c08

Browse files
author
Mike Hadlow
committed
Fix failing integration tests.
1 parent c095784 commit 17e8c08

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Source/EasyNetQ.Management.Client.IntegrationTests/ManagementClientTests.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,9 @@ public async Task Should_get_queues_by_vhost()
243243
var vhost = await managementClient.CreateVhostAsync(testVHost).ConfigureAwait(false);
244244
vhost.Name.ShouldEqual(testVHost);
245245

246-
await CreateTestQueueInVhost(testQueue, vhost).ConfigureAwait(false);
246+
var queueName = $"{testVHost}_{testQueue}";
247+
248+
await CreateTestQueueInVhost(queueName, vhost).ConfigureAwait(false);
247249
(await managementClient.GetQueuesAsync(vhost).ConfigureAwait(false)).ToList().Count.ShouldBeGreaterThan(0);
248250
}
249251

0 commit comments

Comments
 (0)