summaryrefslogtreecommitdiff
path: root/qpid/java
diff options
context:
space:
mode:
authorMartin Ritchie <ritchiem@apache.org>2010-06-02 16:46:20 +0000
committerMartin Ritchie <ritchiem@apache.org>2010-06-02 16:46:20 +0000
commit23a076f11d167da1a4317e32d804200c3b4aa911 (patch)
tree186d1abcb5a97214478a734c8cccb5d46968328a /qpid/java
parent304804988181bce25c803ac2dc9469cb95eaca25 (diff)
downloadqpid-python-23a076f11d167da1a4317e32d804200c3b4aa911.tar.gz
QPID-2632 : Update test to use the testName'd queue by default not 'test'
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@950653 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java')
-rw-r--r--qpid/java/broker/src/test/java/org/apache/qpid/server/queue/AMQQueueMBeanTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/java/broker/src/test/java/org/apache/qpid/server/queue/AMQQueueMBeanTest.java b/qpid/java/broker/src/test/java/org/apache/qpid/server/queue/AMQQueueMBeanTest.java
index 830bbd41c7..6a98a255f8 100644
--- a/qpid/java/broker/src/test/java/org/apache/qpid/server/queue/AMQQueueMBeanTest.java
+++ b/qpid/java/broker/src/test/java/org/apache/qpid/server/queue/AMQQueueMBeanTest.java
@@ -208,7 +208,7 @@ public class AMQQueueMBeanTest extends InternalBrokerBaseCase
assertEquals("Max MessageSize not set",2000, _queueMBean.getMaximumMessageSize().longValue());
assertEquals("Max QueueDepth not set",maxQueueDepth, _queueMBean.getMaximumQueueDepth().longValue());
- assertEquals("Queue Name does not match", QUEUE_NAME, _queueMBean.getName());
+ assertEquals("Queue Name does not match", new AMQShortString(getName()), _queueMBean.getName());
assertFalse("AutoDelete should not be set.",_queueMBean.isAutoDelete());
assertFalse("Queue should not be durable.",_queueMBean.isDurable());
//TODO add isExclusive when supported