You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2015/04/19 07:56:29 UTC

camel git commit: Fixed test after fixing id was not auto assigned on some nodes

Repository: camel
Updated Branches:
  refs/heads/master 0ee1085a4 -> 10fcf3367


Fixed test after fixing id was not auto assigned on some nodes


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

Branch: refs/heads/master
Commit: 10fcf33675763d0b2487790a6ab802d25942bb14
Parents: 0ee1085
Author: Claus Ibsen <da...@apache.org>
Authored: Sun Apr 19 07:59:35 2015 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Sun Apr 19 07:59:35 2015 +0200

----------------------------------------------------------------------
 .../src/test/java/org/apache/camel/impl/CustomIdFactoryTest.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/10fcf336/camel-core/src/test/java/org/apache/camel/impl/CustomIdFactoryTest.java
----------------------------------------------------------------------
diff --git a/camel-core/src/test/java/org/apache/camel/impl/CustomIdFactoryTest.java b/camel-core/src/test/java/org/apache/camel/impl/CustomIdFactoryTest.java
index 2ef40d2..9e0becb 100644
--- a/camel-core/src/test/java/org/apache/camel/impl/CustomIdFactoryTest.java
+++ b/camel-core/src/test/java/org/apache/camel/impl/CustomIdFactoryTest.java
@@ -89,7 +89,7 @@ public class CustomIdFactoryTest extends ContextTestSupport {
         assertMockEndpointsSatisfied();
 
         // this should take the when path (first to)
-        assertEquals("#choice7##to3#", ids);
+        assertEquals("#choice7##to2#", ids);
     }
 
     /**
@@ -103,7 +103,7 @@ public class CustomIdFactoryTest extends ContextTestSupport {
         assertMockEndpointsSatisfied();
 
         // this should take the otherwise path
-        assertEquals("#choice7##log5##to6#", ids);
+        assertEquals("#choice7##log4##to6#", ids);
     }
 
     private static class MyDebuggerCheckingId implements InterceptStrategy {