Skip to content

Commit

Permalink
fix indents
Browse files Browse the repository at this point in the history
  • Loading branch information
kessplas committed Dec 11, 2024
1 parent 91a0390 commit a67654b
Showing 1 changed file with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,10 @@ public void ordinaryInputStreamV3UnboundedAsync() {

@Test
public void ordinaryInputStreamV3UnboundedMultipartAsync() {
try (S3AsyncClient s3AsyncEncryptionClient = S3AsyncEncryptionClient.builder().aesKey(AES_KEY).enableMultipartPutObject(true).wrappedClient(s3AsyncClient).build()) {
try (S3AsyncClient s3AsyncEncryptionClient = S3AsyncEncryptionClient.builder()
.aesKey(AES_KEY)
.enableMultipartPutObject(true)
.build()) {
final String objectKey = appendTestSuffix("ordinaryInputStreamV3UnboundedAsync");
BlockingInputStreamAsyncRequestBody body =
AsyncRequestBody.forBlockingInputStream(null);
Expand All @@ -171,7 +174,11 @@ public void ordinaryInputStreamV3UnboundedMultipartAsync() {
@Test
public void ordinaryInputStreamV3UnboundedCrt() {
try (S3AsyncClient s3CrtAsyncClient = S3AsyncClient.crtCreate()) {
try (S3AsyncClient s3AsyncEncryptionClient = S3AsyncEncryptionClient.builder().aesKey(AES_KEY).enableMultipartPutObject(true).wrappedClient(s3CrtAsyncClient).build()) {
try (S3AsyncClient s3AsyncEncryptionClient = S3AsyncEncryptionClient.builder()
.aesKey(AES_KEY)
.enableMultipartPutObject(true)
.wrappedClient(s3CrtAsyncClient)
.build()) {
final String objectKey = appendTestSuffix("ordinaryInputStreamV3UnboundedCrt");
BlockingInputStreamAsyncRequestBody body =
AsyncRequestBody.forBlockingInputStream(null);
Expand Down

0 comments on commit a67654b

Please sign in to comment.