diff options
Diffstat (limited to 'dotnet/Qpid.Client.Tests/Channel/ChannelQueueTest.cs')
-rw-r--r-- | dotnet/Qpid.Client.Tests/Channel/ChannelQueueTest.cs | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/dotnet/Qpid.Client.Tests/Channel/ChannelQueueTest.cs b/dotnet/Qpid.Client.Tests/Channel/ChannelQueueTest.cs index 88a056a245..92f30f8f4d 100644 --- a/dotnet/Qpid.Client.Tests/Channel/ChannelQueueTest.cs +++ b/dotnet/Qpid.Client.Tests/Channel/ChannelQueueTest.cs @@ -93,20 +93,6 @@ namespace Qpid.Client.Tests.Channel }
[Test]
- public void DeleteInExistentQueue()
- {
- try
- {
- _channel.DeleteQueue("Q1", false, false, true);
- _logger.Info("queue deleted");
- }
- catch (AMQException e)
- {
- _logger.Info(e.ToString());
- }
- }
-
- [Test]
public void DeleteUsedQueue()
{
// Create the consumer
@@ -123,7 +109,7 @@ namespace Qpid.Client.Tests.Channel }
[Test]
- public void DeleteUnUsedQueue()
+ public void DeleteUnusedQueue()
{
// delete the queue
_channel.DeleteQueue(_queueName, true, true, true);
|