This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new c7b040d Fixed CS c7b040d is described below commit c7b040de15003f63fa1b32ab7ccb283032ac1890 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Fri Nov 1 08:39:04 2019 +0100 Fixed CS --- .../apache/camel/component/cxf/CxfComponentEnableMtomTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfComponentEnableMtomTest.java b/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfComponentEnableMtomTest.java index 0b65584..050e803 100644 --- a/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfComponentEnableMtomTest.java +++ b/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfComponentEnableMtomTest.java @@ -44,7 +44,7 @@ public class CxfComponentEnableMtomTest { private CamelContext context; @Test - public void testIsMtomEnabled_EnabledThroughBeanSetter() throws InterruptedException { + public void testIsMtomEnabledEnabledThroughBeanSetter() throws InterruptedException { Endpoint endpoint = context.getEndpoint("cxf:bean:mtomByBeanSetter"); if (endpoint instanceof CxfEndpoint) { @@ -56,7 +56,7 @@ public class CxfComponentEnableMtomTest { } @Test - public void testIsMtomEnabled_EnabledThroughBeanProperties() throws InterruptedException { + public void testIsMtomEnabledEnabledThroughBeanProperties() throws InterruptedException { Endpoint endpoint = context.getEndpoint("cxf:bean:mtomByBeanProperties"); if (endpoint instanceof CxfEndpoint) { @@ -68,7 +68,7 @@ public class CxfComponentEnableMtomTest { } @Test - public void testIsMtomEnabled_EnabledThroughURIProperties() throws InterruptedException { + public void testIsMtomEnabledEnabledThroughURIProperties() throws InterruptedException { Endpoint endpoint = context.getEndpoint("cxf:bean:mtomByURIProperties?properties.mtom-enabled=true"); if (endpoint instanceof CxfEndpoint) { @@ -80,7 +80,7 @@ public class CxfComponentEnableMtomTest { } @Test - public void testIsMtomEnabled_EnabledThroughQueryParameters() throws InterruptedException { + public void testIsMtomEnabledEnabledThroughQueryParameters() throws InterruptedException { Endpoint endpoint = context.getEndpoint("cxf:bean:mtomByQueryParameters?mtomEnabled=true"); if (endpoint instanceof CxfEndpoint) {