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 2014/08/07 16:48:25 UTC

[4/8] git commit: Fixed test

Fixed test


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

Branch: refs/heads/master
Commit: 57078628f503bd4bd0c00295f231667f69996bff
Parents: 426bce9
Author: Claus Ibsen <da...@apache.org>
Authored: Thu Aug 7 14:58:36 2014 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Thu Aug 7 14:58:36 2014 +0200

----------------------------------------------------------------------
 .../component/jms/issues/JmsBlockedAsyncRoutingEngineTest.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/57078628/components/camel-jms/src/test/java/org/apache/camel/component/jms/issues/JmsBlockedAsyncRoutingEngineTest.java
----------------------------------------------------------------------
diff --git a/components/camel-jms/src/test/java/org/apache/camel/component/jms/issues/JmsBlockedAsyncRoutingEngineTest.java b/components/camel-jms/src/test/java/org/apache/camel/component/jms/issues/JmsBlockedAsyncRoutingEngineTest.java
index ff8e267..d8fe352 100644
--- a/components/camel-jms/src/test/java/org/apache/camel/component/jms/issues/JmsBlockedAsyncRoutingEngineTest.java
+++ b/components/camel-jms/src/test/java/org/apache/camel/component/jms/issues/JmsBlockedAsyncRoutingEngineTest.java
@@ -115,7 +115,7 @@ public class JmsBlockedAsyncRoutingEngineTest extends CamelTestSupport {
         return new RouteBuilder() {
             public void configure() throws Exception {
                 from("activemq:queue:test?concurrentConsumers=5&useMessageIDAsCorrelationID=true&transacted=true")
-                    .filter().simple("${in.body} = 'beSlow'")
+                    .filter().simple("${in.body} == 'beSlow'")
                         .delay(constant(2000))
                     .log(">>>>> Received message on test queue")
                     .setBody(constant("Reply"))