git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1454333 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary Tully 2013-03-08 11:57:20 +00:00
parent fc15f130d1
commit c6c3b2351a
1 changed files with 2 additions and 2 deletions

View File

@ -137,7 +137,7 @@ public class AdvisoryTopicCleanUpTest {
for (ActiveMQDestination destination: dests) { for (ActiveMQDestination destination: dests) {
String name = destination.getPhysicalName(); String name = destination.getPhysicalName();
if (name.contains(queue.getPhysicalName())) { if (name.contains(queue.getPhysicalName())) {
LOG.debug("Destination on Broker before removing the Queue: " + name); LOG.info("Destination on Broker before removing the Queue: " + name);
} }
} }
@ -153,7 +153,7 @@ public class AdvisoryTopicCleanUpTest {
{ {
for (ActiveMQDestination destination: dests) { for (ActiveMQDestination destination: dests) {
String name = destination.getPhysicalName(); String name = destination.getPhysicalName();
LOG.debug("Destination on broker after removing the Queue: " + name); LOG.info("Destination on broker after removing the Queue: " + name);
assertFalse("Advisory topic should not exist. " + name, assertFalse("Advisory topic should not exist. " + name,
name.startsWith("ActiveMQ.Advisory") && name.contains(queue.getPhysicalName())); name.startsWith("ActiveMQ.Advisory") && name.contains(queue.getPhysicalName()));
} }