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
commit 7b934045ae53bc575006c6636aa7b732c4a6925c Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Sun Aug 23 15:56:09 2020 +0200 Regen --- .../org/apache/camel/support/PropertyBindingSupportConfigurerTest.java | 3 ++- .../test/java/org/apache/camel/support/PropertyBindingSupportTest.java | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/camel-core/src/test/java/org/apache/camel/support/PropertyBindingSupportConfigurerTest.java b/core/camel-core/src/test/java/org/apache/camel/support/PropertyBindingSupportConfigurerTest.java index b2b2332..cc33d46 100644 --- a/core/camel-core/src/test/java/org/apache/camel/support/PropertyBindingSupportConfigurerTest.java +++ b/core/camel-core/src/test/java/org/apache/camel/support/PropertyBindingSupportConfigurerTest.java @@ -235,7 +235,8 @@ public class PropertyBindingSupportConfigurerTest extends ContextTestSupport { prop.put("work.name", "{{companyName}}"); myConfigurer.reset(); - PropertyBindingSupport.build().withReflection(false).withConfigurer(myConfigurer).withIgnoreCase(true).bind(context, bar, prop); + PropertyBindingSupport.build().withReflection(false).withConfigurer(myConfigurer).withIgnoreCase(true).bind(context, + bar, prop); assertEquals(6, myConfigurer.getCounter()); assertEquals(33, bar.getAge()); diff --git a/core/camel-core/src/test/java/org/apache/camel/support/PropertyBindingSupportTest.java b/core/camel-core/src/test/java/org/apache/camel/support/PropertyBindingSupportTest.java index 39c512c..5a61244 100644 --- a/core/camel-core/src/test/java/org/apache/camel/support/PropertyBindingSupportTest.java +++ b/core/camel-core/src/test/java/org/apache/camel/support/PropertyBindingSupportTest.java @@ -27,7 +27,6 @@ import org.apache.camel.spi.Injector; import org.apache.camel.spi.PropertiesComponent; import org.junit.jupiter.api.Test; - import static org.junit.jupiter.api.Assertions.*; /**