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 2018/09/23 14:27:12 UTC

[camel] branch master updated: CAMEL-12827: Fixed CS

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 dc16f48  CAMEL-12827: Fixed CS
dc16f48 is described below

commit dc16f483a4e380c373073af3d167d80bbe6c0828
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Sun Sep 23 16:26:09 2018 +0200

    CAMEL-12827: Fixed CS
---
 .../org/apache/camel/http/common/HttpSendDynamicAwareTest.java     | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/components/camel-http-common/src/test/java/org/apache/camel/http/common/HttpSendDynamicAwareTest.java b/components/camel-http-common/src/test/java/org/apache/camel/http/common/HttpSendDynamicAwareTest.java
index 71ec8f5..4872957 100644
--- a/components/camel-http-common/src/test/java/org/apache/camel/http/common/HttpSendDynamicAwareTest.java
+++ b/components/camel-http-common/src/test/java/org/apache/camel/http/common/HttpSendDynamicAwareTest.java
@@ -16,19 +16,20 @@
  */
 package org.apache.camel.http.common;
 
-import static org.junit.Assert.*;
+import org.apache.camel.spi.SendDynamicAware.DynamicAwareEntry;
 
 import org.junit.Before;
 import org.junit.Test;
-import org.apache.camel.spi.SendDynamicAware.DynamicAwareEntry;
+
+import static org.junit.Assert.assertEquals;
 
 public class HttpSendDynamicAwareTest {
 
     private HttpSendDynamicAware httpSendDynamicAware;
+
     @Before
     public void setUp() throws Exception {
         this.httpSendDynamicAware = new HttpSendDynamicAware();
-        
     }
 
     @Test