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 2019/11/01 07:39:55 UTC

[camel] 02/02: Fixed CS

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch camel-2.24.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 47d11c383846bbf8ca31555015decd17079d098d
Author: Claus Ibsen <cl...@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 37762f1..ad4fef6 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) {