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 bb8b9c77a583db10d7397150d2683835451b2020 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Tue Jan 19 08:24:11 2021 +0100 Regen --- .../aws2/firehose/KinesisFirehoseComponentConfigurationTest.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/components/camel-aws2-kinesis/src/test/java/org/apache/camel/component/aws2/firehose/KinesisFirehoseComponentConfigurationTest.java b/components/camel-aws2-kinesis/src/test/java/org/apache/camel/component/aws2/firehose/KinesisFirehoseComponentConfigurationTest.java index 0387444..3268ef5 100644 --- a/components/camel-aws2-kinesis/src/test/java/org/apache/camel/component/aws2/firehose/KinesisFirehoseComponentConfigurationTest.java +++ b/components/camel-aws2-kinesis/src/test/java/org/apache/camel/component/aws2/firehose/KinesisFirehoseComponentConfigurationTest.java @@ -82,12 +82,13 @@ public class KinesisFirehoseComponentConfigurationTest extends CamelTestSupport assertEquals("localhost", endpoint.getConfiguration().getProxyHost()); assertEquals(Integer.valueOf(9000), endpoint.getConfiguration().getProxyPort()); } - + @Test public void createEndpointWithOverride() throws Exception { KinesisFirehose2Component component = context.getComponent("aws2-kinesis-firehose", KinesisFirehose2Component.class); KinesisFirehose2Endpoint endpoint = (KinesisFirehose2Endpoint) component - .createEndpoint("aws2-kinesis-firehose://some_stream_name?accessKey=xxxxx&secretKey=yyyyy&overrideEndpoint=true&uriEndpointOverride=http://localhost:4567"); + .createEndpoint( + "aws2-kinesis-firehose://some_stream_name?accessKey=xxxxx&secretKey=yyyyy&overrideEndpoint=true&uriEndpointOverride=http://localhost:4567"); assertEquals("some_stream_name", endpoint.getConfiguration().getStreamName()); assertEquals("xxxxx", endpoint.getConfiguration().getAccessKey());