You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2009/02/19 02:32:33 UTC

svn commit: r745704 - /camel/branches/camel-1.x/components/camel-jms/src/test/resources/org/apache/camel/component/jms/issues/JmsSpringResequencerTest-context.xml

Author: ningjiang
Date: Thu Feb 19 01:32:32 2009
New Revision: 745704

URL: http://svn.apache.org/viewvc?rev=745704&view=rev
Log:
Fixed the unit test error of JmsSpringResequencerTest

Modified:
    camel/branches/camel-1.x/components/camel-jms/src/test/resources/org/apache/camel/component/jms/issues/JmsSpringResequencerTest-context.xml

Modified: camel/branches/camel-1.x/components/camel-jms/src/test/resources/org/apache/camel/component/jms/issues/JmsSpringResequencerTest-context.xml
URL: http://svn.apache.org/viewvc/camel/branches/camel-1.x/components/camel-jms/src/test/resources/org/apache/camel/component/jms/issues/JmsSpringResequencerTest-context.xml?rev=745704&r1=745703&r2=745704&view=diff
==============================================================================
--- camel/branches/camel-1.x/components/camel-jms/src/test/resources/org/apache/camel/component/jms/issues/JmsSpringResequencerTest-context.xml (original)
+++ camel/branches/camel-1.x/components/camel-jms/src/test/resources/org/apache/camel/component/jms/issues/JmsSpringResequencerTest-context.xml Thu Feb 19 01:32:32 2009
@@ -19,27 +19,27 @@
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="
 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
-http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">
+http://activemq.apache.org/camel/schema/spring http://activemq.apache.org/camel/schema/spring/camel-spring.xsd">
        
-    <camelContext id="camel" xmlns="http://camel.apache.org/schema/spring">
+    <camelContext id="camel" xmlns="http://activemq.apache.org/camel/schema/spring">
         <jmxAgent id="agent" disabled="true" />
         <route>
            <from uri="activemq:queue:in1"/>           
-  		   <resequence>  		        
+  		   <resequencer>  		        
     			<simple>body</simple>
     			<to uri="mock:result"/>
     			<batch-config batchSize="100" batchTimeout="100"/>    			
-  			</resequence>
+  			</resequencer>
   			
 		</route>
 		
 		<route>
            <from uri="activemq:queue:in2"/>           
-  		   <resequence>  		        
+  		   <resequencer>  		        
     			<simple>header.num</simple>    			
     			<to uri="mock:result"/>
     			<stream-config timeout="2000"/>
-  			</resequence>
+  			</resequencer>
 		</route>          
         
     </camelContext>