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

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


The following commit(s) were added to refs/heads/camel-2.20.x by this push:
     new 5555dad  NO JIRA - fix checkstyle issues
5555dad is described below

commit 5555dad68bc6561ef5a8eeb3b3bae9e4329972fa
Author: Quinn Stevenson <qu...@pronoia-solutions.com>
AuthorDate: Wed Jul 3 07:17:44 2019 -0600

    NO JIRA - fix checkstyle issues
---
 .../mllp/MllpTcpClientProducerAcknowledgementValidationTest.java      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/components/camel-mllp/src/test/java/org/apache/camel/component/mllp/MllpTcpClientProducerAcknowledgementValidationTest.java
 
b/components/camel-mllp/src/test/java/org/apache/camel/component/mllp/MllpTcpClientProducerAcknowledgementValidationTest.java
index 2eda4f5..3261c85 100644
--- 
a/components/camel-mllp/src/test/java/org/apache/camel/component/mllp/MllpTcpClientProducerAcknowledgementValidationTest.java
+++ 
b/components/camel-mllp/src/test/java/org/apache/camel/component/mllp/MllpTcpClientProducerAcknowledgementValidationTest.java
@@ -230,7 +230,7 @@ public class 
MllpTcpClientProducerAcknowledgementValidationTest extends CamelTes
 
     @Test
     public void testInvalidAcknowledgementContainingEmbeddedStartOfBlock() 
throws Exception {
-        final String badAcknowledgement = EXPECTED_AA.replaceFirst("|ORM", 
START_OF_BLOCK + "|ORM" );
+        final String badAcknowledgement = EXPECTED_AA.replaceFirst("|ORM", 
START_OF_BLOCK + "|ORM");
 
         invalid.expectedBodiesReceived(TEST_MESSAGE);
         aa.expectedHeaderReceived(MllpConstants.MLLP_ACKNOWLEDGEMENT_TYPE, 
"AA");
@@ -253,7 +253,7 @@ public class 
MllpTcpClientProducerAcknowledgementValidationTest extends CamelTes
 
     @Test
     public void testInvalidAcknowledgementContainingEmbeddedEndOfBlock() 
throws Exception {
-        final String badAcknowledgement = EXPECTED_AA.replaceFirst("|ORM", 
END_OF_BLOCK + "|ORM" );
+        final String badAcknowledgement = EXPECTED_AA.replaceFirst("|ORM", 
END_OF_BLOCK + "|ORM");
 
         invalid.expectedBodiesReceived(TEST_MESSAGE);
         aa.expectedHeaderReceived(MllpConstants.MLLP_ACKNOWLEDGEMENT_TYPE, 
"AA");

Reply via email to