summaryrefslogtreecommitdiff
path: root/qpid/dotnet
diff options
context:
space:
mode:
authorSteven Shaw <steshaw@apache.org>2006-11-29 01:26:02 +0000
committerSteven Shaw <steshaw@apache.org>2006-11-29 01:26:02 +0000
commit18089c901996ab36a5bce9551200dd3ff88148ff (patch)
tree0e752e60f31e71c9a1eb7e30c2acb83da705d1c5 /qpid/dotnet
parenta2394209ad20d2da955c99aa5dfb3519319544b6 (diff)
downloadqpid-python-18089c901996ab36a5bce9551200dd3ff88148ff.tar.gz
Tidy up
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@480318 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/dotnet')
-rw-r--r--qpid/dotnet/Qpid.Client.Tests/Common/BaseMessagingTestFixture.cs11
1 files changed, 1 insertions, 10 deletions
diff --git a/qpid/dotnet/Qpid.Client.Tests/Common/BaseMessagingTestFixture.cs b/qpid/dotnet/Qpid.Client.Tests/Common/BaseMessagingTestFixture.cs
index 4e69e07f45..a5085ee199 100644
--- a/qpid/dotnet/Qpid.Client.Tests/Common/BaseMessagingTestFixture.cs
+++ b/qpid/dotnet/Qpid.Client.Tests/Common/BaseMessagingTestFixture.cs
@@ -40,16 +40,7 @@ namespace Qpid.Client.Tests
{
QpidConnectionInfo connectionInfo = new QpidConnectionInfo();
- bool local = true;
-
- if (local)
- {
- connectionInfo.AddBrokerInfo(new AmqBrokerInfo("amqp", "localhost", 5672, false));
- }
- else
- {
- connectionInfo.AddBrokerInfo(new AmqBrokerInfo("amqp", "eqd-lxamq01.uk.jpmorgan.com", 8099, false));
- }
+ connectionInfo.AddBrokerInfo(new AmqBrokerInfo("amqp", "localhost", 5672, false));
_connection = new AMQConnection(connectionInfo);
_channel = _connection.CreateChannel(false, AcknowledgeMode.NoAcknowledge, 1);
}