mirror of https://github.com/apache/activemq.git
https://issues.apache.org/jira/browse/AMQ-4364 - relevant test that works ok
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1454333 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
fc15f130d1
commit
c6c3b2351a
|
@ -137,7 +137,7 @@ public class AdvisoryTopicCleanUpTest {
|
|||
for (ActiveMQDestination destination: dests) {
|
||||
String name = destination.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) {
|
||||
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,
|
||||
name.startsWith("ActiveMQ.Advisory") && name.contains(queue.getPhysicalName()));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue