This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch camel-2.22.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit 21943830567ae714e76be58f1eb2221810658d65 Author: Claus Ibsen <claus.ib...@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