You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by bv...@apache.org on 2012/03/19 13:56:06 UTC

svn commit: r1302405 - in /camel/branches/camel-2.9.x: ./ camel-core/src/test/java/org/apache/camel/component/validator/ValidatorIllegalImportTest.java

Author: bvahdat
Date: Mon Mar 19 12:56:06 2012
New Revision: 1302405

URL: http://svn.apache.org/viewvc?rev=1302405&view=rev
Log:
Merged revisions 1302393 via svnmerge from 
https://svn.apache.org/repos/asf/camel/trunk

........
  r1302393 | bvahdat | 2012-03-19 13:16:32 +0100 (Mo, 19 Mrz 2012) | 1 line
  
  Fixed the failed test on the CI-Server.
........

Modified:
    camel/branches/camel-2.9.x/   (props changed)
    camel/branches/camel-2.9.x/camel-core/src/test/java/org/apache/camel/component/validator/ValidatorIllegalImportTest.java

Propchange: camel/branches/camel-2.9.x/
------------------------------------------------------------------------------
  Merged /camel/trunk:r1302393

Propchange: camel/branches/camel-2.9.x/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: camel/branches/camel-2.9.x/camel-core/src/test/java/org/apache/camel/component/validator/ValidatorIllegalImportTest.java
URL: http://svn.apache.org/viewvc/camel/branches/camel-2.9.x/camel-core/src/test/java/org/apache/camel/component/validator/ValidatorIllegalImportTest.java?rev=1302405&r1=1302404&r2=1302405&view=diff
==============================================================================
--- camel/branches/camel-2.9.x/camel-core/src/test/java/org/apache/camel/component/validator/ValidatorIllegalImportTest.java (original)
+++ camel/branches/camel-2.9.x/camel-core/src/test/java/org/apache/camel/component/validator/ValidatorIllegalImportTest.java Mon Mar 19 12:56:06 2012
@@ -57,7 +57,7 @@ public class ValidatorIllegalImportTest 
             @Override
             public void configure() throws Exception {
                 from("direct:test")
-                    .to("validator:org/apache/camel/component/validator/BroadCastMonitorFixed.xsd")
+                    .to("validator:org/apache/camel/component/validator/BroadcastMonitorFixed.xsd")
                     .to("mock:result");
             }
         });
@@ -73,7 +73,7 @@ public class ValidatorIllegalImportTest 
             @Override
             public void configure() throws Exception {
                 from("direct:test")
-                    .to("validator:org/apache/camel/component/validator/BroadCastMonitor.xsd")
+                    .to("validator:org/apache/camel/component/validator/BroadcastMonitor.xsd")
                     .to("mock:result");
             }
         });
@@ -83,7 +83,7 @@ public class ValidatorIllegalImportTest 
         } catch (FailedToCreateRouteException e) {
             ResolveEndpointFailedException cause = assertIsInstanceOf(ResolveEndpointFailedException.class, e.getCause());
             IllegalArgumentException iae = assertIsInstanceOf(IllegalArgumentException.class, cause.getCause());
-            assertTrue(iae.getMessage().startsWith("Resource: org/apache/camel/component/validator/BroadCastMonitor.xsd refers an invalid resource without SystemId."));
+            assertTrue(iae.getMessage().startsWith("Resource: org/apache/camel/component/validator/BroadcastMonitor.xsd refers an invalid resource without SystemId."));
         }
     }