summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAidan Skinner <aidan@apache.org>2009-09-16 10:17:20 +0000
committerAidan Skinner <aidan@apache.org>2009-09-16 10:17:20 +0000
commite2318508673d16d54b544ca589357003b7cfecc1 (patch)
treea8ab21841e59f3ef4deb3712010521dd451d1c3f
parent23ed5eb6dbd7cf39cf18b308a0d4e339c4db1c83 (diff)
downloadqpid-python-e2318508673d16d54b544ca589357003b7cfecc1.tar.gz
QPID-2105: Merging the patch didn't uncomment this test, stoopid git.
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/java-network-refactor@815708 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/java/systests/src/main/java/org/apache/qpid/test/unit/client/protocol/AMQProtocolSessionTest.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/qpid/java/systests/src/main/java/org/apache/qpid/test/unit/client/protocol/AMQProtocolSessionTest.java b/qpid/java/systests/src/main/java/org/apache/qpid/test/unit/client/protocol/AMQProtocolSessionTest.java
index b99cd239d3..7a27925a36 100644
--- a/qpid/java/systests/src/main/java/org/apache/qpid/test/unit/client/protocol/AMQProtocolSessionTest.java
+++ b/qpid/java/systests/src/main/java/org/apache/qpid/test/unit/client/protocol/AMQProtocolSessionTest.java
@@ -78,7 +78,7 @@ public class AMQProtocolSessionTest extends QpidTestCase
_validAddress = "abc";
_generatedAddress_3 = "tmp_abc123_3";
}
-/*
+
public void testGenerateQueueName()
{
AMQShortString testAddress;
@@ -97,13 +97,13 @@ public class AMQProtocolSessionTest extends QpidTestCase
assertEquals("Failure when generating a queue exchange from an empty address",_generatedAddress_2,testAddress.toString());
//test address with no special chars
- _testSession.getNetworkDriver().setStringLocalAddress(_validAddress);
+ _testSession.getNetworkDriver().setLocalAddress(_validAddress);
testAddress = _testSession.genQueueName();
assertEquals("Failure when generating a queue exchange from an address with no special chars",_generatedAddress_3,testAddress.toString());
}
-*/
+
protected void tearDown() throws Exception
{
_testSession = null;