From c8666f89dc3f69129ad785bfca69251e5a2ae06a Mon Sep 17 00:00:00 2001 From: "Hiram R. Chirino" Date: Thu, 20 Sep 2007 18:57:38 +0000 Subject: [PATCH] Fix for broken test git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@577878 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/activemq/camel/component/ActiveMQConfigureTest.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/activemq-core/src/test/java/org/apache/activemq/camel/component/ActiveMQConfigureTest.java b/activemq-core/src/test/java/org/apache/activemq/camel/component/ActiveMQConfigureTest.java index a63b362a02..c1eb91fb1f 100644 --- a/activemq-core/src/test/java/org/apache/activemq/camel/component/ActiveMQConfigureTest.java +++ b/activemq-core/src/test/java/org/apache/activemq/camel/component/ActiveMQConfigureTest.java @@ -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()); }