This is an automated email from the ASF dual-hosted git repository.
acosentino 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 6e5bd64 Fixed FileConsumeTemplateTest
6e5bd64 is described below
commit 6e5bd64647ba5787b53cf4318a6f69bfd216562f
Author: Andrea Cosentino <ancosen@gmail.com>
AuthorDate: Mon Dec 11 08:46:21 2017 +0100
Fixed FileConsumeTemplateTest
---
.../org/apache/camel/component/file/FileConsumeTemplateTest.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/camel-core/src/test/java/org/apache/camel/component/file/FileConsumeTemplateTest.java
b/camel-core/src/test/java/org/apache/camel/component/file/FileConsumeTemplateTest.java
index 07b1373..a7f9859 100644
--- a/camel-core/src/test/java/org/apache/camel/component/file/FileConsumeTemplateTest.java
+++ b/camel-core/src/test/java/org/apache/camel/component/file/FileConsumeTemplateTest.java
@@ -43,8 +43,8 @@ public class FileConsumeTemplateTest extends ContextTestSupport {
String body = out.getIn().getBody(String.class);
String body2 = out2.getIn().getBody(String.class);
- assertEquals("Bye World", body);
- assertEquals("Hello World", body2);
+ assertEquals("Hello World", body);
+ assertEquals("Bye World", body2);
}
-}
\ No newline at end of file
+}
--
To stop receiving notification emails like this one, please contact
['"commits@camel.apache.org" <commits@camel.apache.org>'].
|