You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ha...@apache.org on 2009/06/30 03:37:01 UTC

svn commit: r789533 - /camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/pollEnricher.xml

Author: hadrian
Date: Tue Jun 30 01:37:00 2009
New Revision: 789533

URL: http://svn.apache.org/viewvc?rev=789533&view=rev
Log:
Fix failing test due to route changes in parent test using Java DSL and XML DSL not being updated.

Modified:
    camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/pollEnricher.xml

Modified: camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/pollEnricher.xml
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/pollEnricher.xml?rev=789533&r1=789532&r2=789533&view=diff
==============================================================================
--- camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/pollEnricher.xml (original)
+++ camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/pollEnricher.xml Tue Jun 30 01:37:00 2009
@@ -26,26 +26,26 @@
         <!-- START SNIPPET: e1 -->
         <route>
             <from uri="direct:enricher-test-1"/>
-            <pollEnrich uri="seda:foo1" strategyRef="sampleAggregator"/>
+            <pollEnrich uri="direct:foo1" strategyRef="sampleAggregator"/>
             <to uri="mock:mock"/>
         </route>
         <!-- END SNIPPET: e1 -->
 
         <route>
             <from uri="direct:enricher-test-2"/>
-            <pollEnrich uri="seda:foo2" timeout="1000" strategyRef="sampleAggregator"/>
+            <pollEnrich uri="direct:foo2" timeout="1000" strategyRef="sampleAggregator"/>
             <to uri="mock:mock"/>
         </route>
 
         <route>
             <from uri="direct:enricher-test-3"/>
-            <pollEnrich uri="seda:foo3" timeout="-1" strategyRef="sampleAggregator"/>
+            <pollEnrich uri="direct:foo3" timeout="-1" strategyRef="sampleAggregator"/>
             <to uri="mock:mock"/>
         </route>
 
         <route>
             <from uri="direct:enricher-test-4"/>
-            <pollEnrich uri="seda:foo4" strategyRef="sampleAggregator"/>
+            <pollEnrich uri="direct:foo4" strategyRef="sampleAggregator"/>
             <to uri="mock:mock"/>
         </route>
     </camelContext>