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/09/06 07:51:50 UTC

camel git commit: Fixed test

Repository: camel
Updated Branches:
  refs/heads/master b712e00f2 -> f9e409e3c


Fixed test


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

Branch: refs/heads/master
Commit: f9e409e3c509ceb2a9b376125b3478447fb31909
Parents: b712e00
Author: Claus Ibsen <da...@apache.org>
Authored: Sun Sep 6 07:52:40 2015 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Sun Sep 6 07:52:40 2015 +0200

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


http://git-wip-us.apache.org/repos/asf/camel/blob/f9e409e3/components/camel-rmi/src/test/java/org/apache/camel/component/rmi/RmiRouteTest.java
----------------------------------------------------------------------
diff --git a/components/camel-rmi/src/test/java/org/apache/camel/component/rmi/RmiRouteTest.java b/components/camel-rmi/src/test/java/org/apache/camel/component/rmi/RmiRouteTest.java
index da67a8f..07c9922 100644
--- a/components/camel-rmi/src/test/java/org/apache/camel/component/rmi/RmiRouteTest.java
+++ b/components/camel-rmi/src/test/java/org/apache/camel/component/rmi/RmiRouteTest.java
@@ -57,7 +57,7 @@ public class RmiRouteTest extends RmiRouteTestSupport {
 
         // START SNIPPET: invoke
         Endpoint endpoint = camelContext.getEndpoint("direct:hello");
-        ISay proxy = ProxyHelper.createProxy(endpoint, ISay.class);
+        ISay proxy = ProxyHelper.createProxy(endpoint, false, ISay.class);
         String rc = proxy.say();
         assertEquals("Good Bye!", rc);
         // END SNIPPET: invoke