Author: davsclaus Date: Wed Dec 15 12:22:57 2010 New Revision: 1049523 URL: http://svn.apache.org/viewvc?rev=1049523&view=rev Log: Fixed test.
Modified: camel/trunk/components/camel-spring/src/test/java/org/apache/camel/spring/processor/SpringDeadLetterChannelInvalidDeadLetterUriTest.java Modified: camel/trunk/components/camel-spring/src/test/java/org/apache/camel/spring/processor/SpringDeadLetterChannelInvalidDeadLetterUriTest.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-spring/src/test/java/org/apache/camel/spring/processor/SpringDeadLetterChannelInvalidDeadLetterUriTest.java?rev=1049523&r1=1049522&r2=1049523&view=diff ============================================================================== --- camel/trunk/components/camel-spring/src/test/java/org/apache/camel/spring/processor/SpringDeadLetterChannelInvalidDeadLetterUriTest.java (original) +++ camel/trunk/components/camel-spring/src/test/java/org/apache/camel/spring/processor/SpringDeadLetterChannelInvalidDeadLetterUriTest.java Wed Dec 15 12:22:57 2010 @@ -38,7 +38,7 @@ public class SpringDeadLetterChannelInva fail("Should have thrown an exception"); } catch (Exception e) { NoSuchEndpointException cause = assertIsInstanceOf(NoSuchEndpointException.class, e.getCause().getCause()); - assertEquals("No endpoint could be found for: xxx, please check your classpath contains the needed camel component jar.", cause.getMessage()); + assertEquals("No endpoint could be found for: xxx, please check your classpath contains the needed Camel component jar.", cause.getMessage()); } }