Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilya Nikulshin committed May 28, 2024
1 parent bed7a00 commit fea1ff0
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1287,8 +1287,7 @@ public async Task Should_get_queues()
// E.g. message_bytes_ready or operator_policy
q.ExtensionData.Should().NotBeNull();
})
.And.ContainEquivalentOf(new QueueName(TestQueue, Vhost.Name))
.And.ContainEquivalentOf(new QueueName("aliveness-test", Vhost.Name));
.And.ContainEquivalentOf(new QueueName(TestQueue, Vhost.Name));
};

await act.Should().NotThrowAfterAsync(10.Seconds(), TimeSpan.Zero);
Expand Down

0 comments on commit fea1ff0

Please sign in to comment.