You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2013/06/23 10:32:01 UTC

[2/3] git commit: CAMEL-6317: Fixed test in camel-spring

CAMEL-6317: Fixed test in camel-spring


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/adba465f
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/adba465f
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/adba465f

Branch: refs/heads/camel-2.11.x
Commit: adba465fdf229b752d1020b03e04373969041f4f
Parents: 6a641ec
Author: Claus Ibsen <da...@apache.org>
Authored: Sun Jun 23 10:29:55 2013 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Sun Jun 23 10:30:19 2013 +0200

----------------------------------------------------------------------
 .../org/apache/camel/component/validator/camelContext.xml      | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/adba465f/components/camel-spring/src/test/resources/org/apache/camel/component/validator/camelContext.xml
----------------------------------------------------------------------
diff --git a/components/camel-spring/src/test/resources/org/apache/camel/component/validator/camelContext.xml b/components/camel-spring/src/test/resources/org/apache/camel/component/validator/camelContext.xml
index e252cfc..ae7fa43 100644
--- a/components/camel-spring/src/test/resources/org/apache/camel/component/validator/camelContext.xml
+++ b/components/camel-spring/src/test/resources/org/apache/camel/component/validator/camelContext.xml
@@ -66,6 +66,12 @@
             <to uri="validator:org/apache/camel/component/validator/schema.xsd?headerName=headerToValidate&amp;failOnNullHeader=false"/>
             <to uri="mock:valid"/>
         </route>
+
+        <route>
+            <from uri="direct:useNotASharedSchema"/>
+            <to uri="validator:org/apache/camel/component/validator/schema.xsd?useSharedSchema=false"/>
+            <to uri="mock:valid"/>
+        </route>
     </camelContext>
 
 </beans>