This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch camel-3.20.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit 1032535ca1cc24aee0329dc390aa9e5f548c3636 Author: Andrea Cosentino <[email protected]> AuthorDate: Fri Feb 10 14:10:57 2023 +0100 CAMEL-19034 - Camel-AWS2-S3: GetObject should preserve the metadata Signed-off-by: Andrea Cosentino <[email protected]> --- .../camel/component/aws2/s3/integration/S3GetObjectOperationIT.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/camel-aws/camel-aws2-s3/src/test/java/org/apache/camel/component/aws2/s3/integration/S3GetObjectOperationIT.java b/components/camel-aws/camel-aws2-s3/src/test/java/org/apache/camel/component/aws2/s3/integration/S3GetObjectOperationIT.java index 99003ec4f14..b897cd1845f 100644 --- a/components/camel-aws/camel-aws2-s3/src/test/java/org/apache/camel/component/aws2/s3/integration/S3GetObjectOperationIT.java +++ b/components/camel-aws/camel-aws2-s3/src/test/java/org/apache/camel/component/aws2/s3/integration/S3GetObjectOperationIT.java @@ -16,6 +16,8 @@ */ package org.apache.camel.component.aws2.s3.integration; +import java.io.InputStream; + import org.apache.camel.*; import org.apache.camel.builder.RouteBuilder; import org.apache.camel.component.aws2.s3.AWS2S3Constants; @@ -24,8 +26,6 @@ import org.apache.camel.component.mock.MockEndpoint; import org.junit.jupiter.api.Test; import software.amazon.awssdk.utils.IoUtils; -import java.io.InputStream; - import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull;
