summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRajith Muditha Attapattu <rajith@apache.org>2011-03-22 23:52:23 +0000
committerRajith Muditha Attapattu <rajith@apache.org>2011-03-22 23:52:23 +0000
commitde3687020a868278df2849dada33b1ae0cb8dbc9 (patch)
tree232e4fa2cf2d6605111f8e835124aabb4bf77bec
parent01b3fdecc0f96507f48a2fc3e2b61e8f47393b86 (diff)
downloadqpid-python-de3687020a868278df2849dada33b1ae0cb8dbc9.tar.gz
QPID-2930
Removed the explicit use of addressing in the test case to enable it to be run under any profile. This seems better than excluding it from the default and 0.8 profiles as the test doesn't really have anything to do with addressing. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1084414 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/java/systests/src/main/java/org/apache/qpid/test/unit/message/JMSPropertiesTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/java/systests/src/main/java/org/apache/qpid/test/unit/message/JMSPropertiesTest.java b/qpid/java/systests/src/main/java/org/apache/qpid/test/unit/message/JMSPropertiesTest.java
index 027e4fb19c..8caeaa55c0 100644
--- a/qpid/java/systests/src/main/java/org/apache/qpid/test/unit/message/JMSPropertiesTest.java
+++ b/qpid/java/systests/src/main/java/org/apache/qpid/test/unit/message/JMSPropertiesTest.java
@@ -178,7 +178,7 @@ public class JMSPropertiesTest extends QpidBrokerTestCase
Session ssn = (AMQSession) con.createSession(false, Session.CLIENT_ACKNOWLEDGE);
con.start();
- Topic topic = ssn.createTopic("ADDR:amq.direct/test");
+ Topic topic = ssn.createTopic("test");
MessageConsumer consumer = ssn.createConsumer(topic);
MessageProducer prod = ssn.createProducer(topic);
Message m = ssn.createMessage();