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

gnodet 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 123cd20  Fix CS
123cd20 is described below

commit 123cd202810ad75870aad72f2204f98cc9a17d05
Author: Guillaume Nodet <gno...@gmail.com>
AuthorDate: Tue Mar 3 07:43:15 2020 +0100

    Fix CS
---
 .../apache/camel/maven/packaging/EndpointHelperTest.java   | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git 
a/tooling/maven/camel-package-maven-plugin/src/test/java/org/apache/camel/maven/packaging/EndpointHelperTest.java
 
b/tooling/maven/camel-package-maven-plugin/src/test/java/org/apache/camel/maven/packaging/EndpointHelperTest.java
index de881ef..5f1733e 100644
--- 
a/tooling/maven/camel-package-maven-plugin/src/test/java/org/apache/camel/maven/packaging/EndpointHelperTest.java
+++ 
b/tooling/maven/camel-package-maven-plugin/src/test/java/org/apache/camel/maven/packaging/EndpointHelperTest.java
@@ -38,8 +38,8 @@ public class EndpointHelperTest {
 
         
componentModel.getComponentOptions().sort(EndpointHelper.createGroupAndLabelComparator());
 
-        
assertEquals("schemaRegistryURL,sslTrustmanagerAlgorithm,sslTruststoreLocation,sslTruststorePassword,"
 +
-                        "sslTruststoreType,useGlobalSslContextParameters",
+        
assertEquals("schemaRegistryURL,sslTrustmanagerAlgorithm,sslTruststoreLocation,sslTruststorePassword,"
+                        + "sslTruststoreType,useGlobalSslContextParameters",
                 componentModel.getComponentOptions().stream()
                     
.map(ComponentOptionModel::getName).collect(Collectors.joining(",")));
     }
@@ -51,11 +51,11 @@ public class EndpointHelperTest {
 
         
componentModel.getComponentOptions().sort(EndpointHelper.createGroupAndLabelComparator());
 
-        
assertEquals("baseUri,clearHeaders,cryptoContextProperties,disallowDoctypeDecl,"
 +
-                        
"keySelector,omitXmlDeclaration,lazyStartProducer,outputNodeSearch,outputNodeSearchType,"
 +
-                        
"outputXmlEncoding,removeSignatureElements,schemaResourceUri,secureValidation," 
+
-                        
"validationFailedHandler,xmlSignature2Message,xmlSignatureChecker,basicPropertyBinding,"
 +
-                        "uriDereferencer,verifierConfiguration",
+        
assertEquals("baseUri,clearHeaders,cryptoContextProperties,disallowDoctypeDecl,"
+                        + 
"keySelector,omitXmlDeclaration,lazyStartProducer,outputNodeSearch,outputNodeSearchType,"
+                        + 
"outputXmlEncoding,removeSignatureElements,schemaResourceUri,secureValidation,"
+                        + 
"validationFailedHandler,xmlSignature2Message,xmlSignatureChecker,basicPropertyBinding,"
+                        + "uriDereferencer,verifierConfiguration",
                 componentModel.getComponentOptions().stream()
                         
.map(ComponentOptionModel::getName).collect(Collectors.joining(",")));
     }

Reply via email to