mirror of https://github.com/apache/activemq.git
Fix for broken test
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@577878 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
54d24ad3bf
commit
c8666f89dc
|
@ -16,7 +16,6 @@
|
|||
*/
|
||||
package org.apache.activemq.camel.component;
|
||||
|
||||
import org.apache.activemq.pool.PooledConnectionFactory;
|
||||
import org.apache.activemq.spring.ActiveMQConnectionFactory;
|
||||
import org.apache.camel.ContextTestSupport;
|
||||
import org.apache.camel.Endpoint;
|
||||
|
@ -37,7 +36,7 @@ public class ActiveMQConfigureTest extends ContextTestSupport {
|
|||
JmsProducer producer = endpoint.createProducer();
|
||||
|
||||
JmsTemplate template = assertIsInstanceOf(JmsTemplate.class, producer.getTemplate());
|
||||
assertIsInstanceOf(PooledConnectionFactory.class, template.getConnectionFactory());
|
||||
assertIsInstanceOf(ActiveMQConnectionFactory.class, template.getConnectionFactory());
|
||||
assertEquals("pubSubDomain", false, template.isPubSubDomain());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue