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 02c0653a517c09690c933736d3fb696e7c20797a Author: Andrea Cosentino <[email protected]> AuthorDate: Thu Nov 19 13:48:03 2020 +0100 CAMEL-15867 - Camel-AWS2-S3: Add a an Autowired S3Presigner UriParam in Configuration, Fixed CS --- .../s3/integration/S3CreateDownloadLinkOperationIntegrationTest.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/components/camel-aws2-s3/src/test/java/org/apache/camel/component/aws2/s3/integration/S3CreateDownloadLinkOperationIntegrationTest.java b/components/camel-aws2-s3/src/test/java/org/apache/camel/component/aws2/s3/integration/S3CreateDownloadLinkOperationIntegrationTest.java index aaf8097..4b081f8 100644 --- a/components/camel-aws2-s3/src/test/java/org/apache/camel/component/aws2/s3/integration/S3CreateDownloadLinkOperationIntegrationTest.java +++ b/components/camel-aws2-s3/src/test/java/org/apache/camel/component/aws2/s3/integration/S3CreateDownloadLinkOperationIntegrationTest.java @@ -29,7 +29,6 @@ import org.apache.camel.component.mock.MockEndpoint; import org.apache.camel.test.junit5.CamelTestSupport; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; - import software.amazon.awssdk.auth.credentials.AwsBasicCredentials; import software.amazon.awssdk.auth.credentials.StaticCredentialsProvider; import software.amazon.awssdk.regions.Region; @@ -44,7 +43,7 @@ public class S3CreateDownloadLinkOperationIntegrationTest extends CamelTestSuppo S3Client client = S3Client.builder().credentialsProvider(StaticCredentialsProvider.create(AwsBasicCredentials.create("xxx", "yyy"))) .region(Region.EU_WEST_1).build(); - + @EndpointInject private ProducerTemplate template;
