Updated Branches:
  refs/heads/master efb95c12b -> 77d0ee203

Polsihed camel-dozer to support better loading mapping files using file paths


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/77d0ee20
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/77d0ee20
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/77d0ee20

Branch: refs/heads/master
Commit: 77d0ee203f2aa14d2ca705033cf2a7e2418b9ec4
Parents: efb95c1
Author: Claus Ibsen <[email protected]>
Authored: Wed Jul 31 16:26:30 2013 +0200
Committer: Claus Ibsen <[email protected]>
Committed: Wed Jul 31 16:26:30 2013 +0200

----------------------------------------------------------------------
 .../src/test/java/org/apache/camel/util/ResourceHelperTest.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/77d0ee20/camel-core/src/test/java/org/apache/camel/util/ResourceHelperTest.java
----------------------------------------------------------------------
diff --git 
a/camel-core/src/test/java/org/apache/camel/util/ResourceHelperTest.java 
b/camel-core/src/test/java/org/apache/camel/util/ResourceHelperTest.java
index 0f5fa13..1a4499e 100644
--- a/camel-core/src/test/java/org/apache/camel/util/ResourceHelperTest.java
+++ b/camel-core/src/test/java/org/apache/camel/util/ResourceHelperTest.java
@@ -98,7 +98,7 @@ public class ResourceHelperTest extends TestSupport {
             
ResourceHelper.resolveMandatoryResourceAsInputStream(context.getClassResolver(),
 "classpath:notfound.txt");
             fail("Should not find file");
         } catch (FileNotFoundException e) {
-            assertEquals("Cannot find resource: notfound.txt in classpath for 
URI: notfound.txt", e.getMessage());
+            assertEquals("Cannot find resource: classpath:notfound.txt in 
classpath for URI: classpath:notfound.txt", e.getMessage());
         }
 
         context.stop();

Reply via email to