This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new 0b3b79f Regen 0b3b79f is described below commit 0b3b79f09c67269c10174ad3a0ac5e2d1553fb8a Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Thu May 20 20:50:34 2021 +0200 Regen --- .../org/apache/camel/component/seda/SedaInOnlyMEPTest.java | 6 +++--- .../java/org/apache/camel/component/seda/SedaInOutMEPTest.java | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaInOnlyMEPTest.java b/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaInOnlyMEPTest.java index 70041f6..f3bff28 100644 --- a/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaInOnlyMEPTest.java +++ b/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaInOnlyMEPTest.java @@ -42,9 +42,9 @@ public class SedaInOnlyMEPTest extends ContextTestSupport { @Override public void configure() throws Exception { from("direct:start") - .to(ExchangePattern.InOnly, "seda:foo") - .setBody(body().prepend("Hello ")) - .to("mock:result"); + .to(ExchangePattern.InOnly, "seda:foo") + .setBody(body().prepend("Hello ")) + .to("mock:result"); from("seda:foo").setBody(body().prepend("InOnly ")).to("mock:foo"); } diff --git a/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaInOutMEPTest.java b/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaInOutMEPTest.java index 8b9b13c..0150a2e 100644 --- a/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaInOutMEPTest.java +++ b/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaInOutMEPTest.java @@ -43,11 +43,11 @@ public class SedaInOutMEPTest extends ContextTestSupport { @Override public void configure() throws Exception { from("direct:start") - // force MEP back to InOnly as we want the next to define the MEP as InOut - .setExchangePattern(ExchangePattern.InOnly) - .to(ExchangePattern.InOut, "seda:foo") - .setBody(body().prepend("Hello ")) - .to("mock:result"); + // force MEP back to InOnly as we want the next to define the MEP as InOut + .setExchangePattern(ExchangePattern.InOnly) + .to(ExchangePattern.InOut, "seda:foo") + .setBody(body().prepend("Hello ")) + .to("mock:result"); from("seda:foo").setBody(body().prepend("InOut ")).to("mock:foo"); }