This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit c2d5aef2c5c89763d919a3a51d1cc8f72c2578d7 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Fri Feb 26 15:20:17 2021 +0100 CAMEL-16171 - Add uri-endpoint-override options to all AWS2 components - AWS2-DDB component --- .../apache/camel/component/aws2/ddb/DdbComponentConfigurationTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/camel-aws2-ddb/src/test/java/org/apache/camel/component/aws2/ddb/DdbComponentConfigurationTest.java b/components/camel-aws2-ddb/src/test/java/org/apache/camel/component/aws2/ddb/DdbComponentConfigurationTest.java index c3a427e..36c8e9f 100644 --- a/components/camel-aws2-ddb/src/test/java/org/apache/camel/component/aws2/ddb/DdbComponentConfigurationTest.java +++ b/components/camel-aws2-ddb/src/test/java/org/apache/camel/component/aws2/ddb/DdbComponentConfigurationTest.java @@ -74,7 +74,8 @@ public class DdbComponentConfigurationTest extends CamelTestSupport { public void createEndpointWithOverrideEndpointElements() throws Exception { Ddb2Component component = context.getComponent("aws2-ddb", Ddb2Component.class); Ddb2Endpoint endpoint = (Ddb2Endpoint) component - .createEndpoint("aws2-ddb://myTable?accessKey=xxxxxx&secretKey=yyyyy®ion=US_EAST_1&overrideEndpoint=true&uriEndpointOverride=http://localhost:9090"); + .createEndpoint( + "aws2-ddb://myTable?accessKey=xxxxxx&secretKey=yyyyy®ion=US_EAST_1&overrideEndpoint=true&uriEndpointOverride=http://localhost:9090"); assertEquals("myTable", endpoint.getConfiguration().getTableName()); assertEquals("xxxxxx", endpoint.getConfiguration().getAccessKey());