Remove FIXME as CAMEL-9200 has been fixed
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/3dfec74f Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/3dfec74f Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/3dfec74f Branch: refs/heads/master Commit: 3dfec74fd1b36145afdd8588745ad11621b827d9 Parents: c263bc3 Author: Antonin Stefanutti <anto...@stefanutti.fr> Authored: Fri Apr 29 14:48:19 2016 +0200 Committer: Antonin Stefanutti <anto...@stefanutti.fr> Committed: Fri Apr 29 14:48:19 2016 +0200 ---------------------------------------------------------------------- .../org/apache/camel/cdi/test/ContextComponentTest.java | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/3dfec74f/components/camel-cdi/src/test/java/org/apache/camel/cdi/test/ContextComponentTest.java ---------------------------------------------------------------------- diff --git a/components/camel-cdi/src/test/java/org/apache/camel/cdi/test/ContextComponentTest.java b/components/camel-cdi/src/test/java/org/apache/camel/cdi/test/ContextComponentTest.java index fe1a80e..65041f0 100644 --- a/components/camel-cdi/src/test/java/org/apache/camel/cdi/test/ContextComponentTest.java +++ b/components/camel-cdi/src/test/java/org/apache/camel/cdi/test/ContextComponentTest.java @@ -69,11 +69,8 @@ public class ContextComponentTest { @Override public void configure() { from("direct:inbound").to("first:in"); - // FIXME: The context component does not support multiple logical endpoints - // with the same remaining defined in two distinct Camel contexts. - // See https://issues.apache.org/jira/browse/CAMEL-9200. - // from("first:out").to("second:in"); - from("first:out").to("mock:outbound"); + from("first:out").to("second:in"); + from("second:out").to("mock:outbound"); } }); } @@ -83,7 +80,7 @@ public class ContextComponentTest { public void sendMessageToInbound(@Uri("direct:inbound") ProducerTemplate inbound, @Uri("mock:outbound") MockEndpoint outbound) throws InterruptedException { outbound.expectedMessageCount(1); - outbound.expectedBodiesReceived("first-test"); + outbound.expectedBodiesReceived("second-first-test"); inbound.sendBody("test");