You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/02/07 07:21:23 UTC

[camel] branch master updated: CAMEL-13167 - FileMEPInOutTest fails on case sensitive filesystem, thanks to Tapio Piironen for the fix

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 00ca1e6  CAMEL-13167 - FileMEPInOutTest fails on case sensitive filesystem, thanks to Tapio Piironen for the fix
00ca1e6 is described below

commit 00ca1e60949a75ade2e5cf20522c79a3a0e8ed81
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Feb 7 08:20:23 2019 +0100

    CAMEL-13167 - FileMEPInOutTest fails on case sensitive filesystem, thanks to Tapio Piironen for the fix
---
 .../test/java/org/apache/camel/component/file/FileMEPInOutTest.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/camel-core/src/test/java/org/apache/camel/component/file/FileMEPInOutTest.java b/core/camel-core/src/test/java/org/apache/camel/component/file/FileMEPInOutTest.java
index 653eae8..3b73132 100644
--- a/core/camel-core/src/test/java/org/apache/camel/component/file/FileMEPInOutTest.java
+++ b/core/camel-core/src/test/java/org/apache/camel/component/file/FileMEPInOutTest.java
@@ -32,7 +32,7 @@ public class FileMEPInOutTest extends ContextTestSupport {
         MockEndpoint mock = getMockEndpoint("mock:result");
         mock.expectedMessageCount(1);
         mock.expectedBodiesReceived("Hello World");
-        mock.expectedFileExists("target/data/fileMEPInOutTest.txt", "Hello World");
+        mock.expectedFileExists("target/data/FileMEPInOutTest.txt", "Hello World");
 
         // request is InOut
         template.requestBodyAndHeader("direct:in", "Hello World", Exchange.FILE_NAME,
@@ -51,4 +51,4 @@ public class FileMEPInOutTest extends ContextTestSupport {
         };
     }
 
-}
\ No newline at end of file
+}