This is an automated email from the ASF dual-hosted git repository. onders pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new ecae562 fix log typo ecae562 is described below commit ecae562c590700a724d0da810bcc11b58f64ef50 Author: önder sezgin <ond...@apache.org> AuthorDate: Thu Sep 27 10:15:49 2018 +0300 fix log typo --- .../org/apache/camel/component/file/FileProducerMoveExistingTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/camel-core/src/test/java/org/apache/camel/component/file/FileProducerMoveExistingTest.java b/camel-core/src/test/java/org/apache/camel/component/file/FileProducerMoveExistingTest.java index 599e69b..7c3b884 100644 --- a/camel-core/src/test/java/org/apache/camel/component/file/FileProducerMoveExistingTest.java +++ b/camel-core/src/test/java/org/apache/camel/component/file/FileProducerMoveExistingTest.java @@ -116,7 +116,7 @@ public class FileProducerMoveExistingTest extends ContextTestSupport { fail("Should have thrown an exception"); } catch (CamelExecutionException e) { GenericFileOperationFailedException cause = assertIsInstanceOf(GenericFileOperationFailedException.class, e.getCause()); - assertTrue(cause.getMessage().startsWith("Cannot moved existing file")); + assertTrue(cause.getMessage().startsWith("Cannot move existing file")); } // we could not write the new file so the previous context should be there