File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
src/test/java/software/amazon/encryption/s3 Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 53
53
export AWS_S3EC_TEST_KMS_KEY_ID=arn:aws:kms:${{ vars.CI_AWS_REGION }}:${{ secrets.CI_AWS_ACCOUNT_ID }}:key/${{ vars.CI_KMS_KEY_ID }}
54
54
export AWS_S3EC_TEST_KMS_KEY_ALIAS=arn:aws:kms:${{ vars.CI_AWS_REGION }}:${{ secrets.CI_AWS_ACCOUNT_ID }}:alias/${{ vars.CI_KMS_KEY_ALIAS }}
55
55
export AWS_REGION=${{ vars.CI_AWS_REGION }}
56
- mvn -B -ntp test -DskipCompile -Dtest=S3EncryptionClientStreamTest#customSetBufferSizeWithLargeObject,S3EncryptionClientStreamTest#customSetBufferSizeWithLargeObjectAsyncClient
56
+ mvn -B -ntp test -DskipCompile -Dtest=S3EncryptionClientStreamTest#customSetBufferSizeWithLargeObject,S3EncryptionClientStreamTest#customSetBufferSizeWithLargeObjectAsyncClient
57
57
shell : bash
58
58
59
59
- name : Package JAR
Original file line number Diff line number Diff line change @@ -367,10 +367,9 @@ public void customSetBufferSizeWithLargeObject() throws IOException {
367
367
fails ++;
368
368
failures .add (e );
369
369
}
370
- System .out .println ("Success: " + success + " Fails: " + fails );
371
- failures .forEach (e -> e .printStackTrace ());
372
-
373
370
}
371
+ System .out .println ("Success: " + success + " Fails: " + fails );
372
+ failures .forEach (e -> e .printStackTrace ());
374
373
}
375
374
376
375
@ Test
@@ -441,9 +440,10 @@ public void customSetBufferSizeWithLargeObjectAsyncClient() throws IOException {
441
440
fails ++;
442
441
failures .add (e );
443
442
}
444
- System .out .println ("Success: " + success + " Fails: " + fails );
445
- failures .forEach (e -> e .printStackTrace ());
443
+
446
444
}
445
+ System .out .println ("Success: " + success + " Fails: " + fails );
446
+ failures .forEach (e -> e .printStackTrace ());
447
447
}
448
448
449
449
@ Test
You can’t perform that action at this time.
0 commit comments