File tree Expand file tree Collapse file tree 1 file changed +7
-9
lines changed
test/s3-tests/src/it/java/software/amazon/awssdk/services/s3/regression/upload Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -40,15 +40,13 @@ public static List<UploadConfig> testConfigs() {
40
40
for (UploadStreamingRegressionTesting .ContentSize cs :
41
41
UploadStreamingRegressionTesting .ContentSize .values ()) {
42
42
for (boolean ps : payloadSign ) {
43
- for (BucketType bucket : BucketType .values ()) {
44
- UploadConfig testConfig = new UploadConfig ();
45
- testConfig .setRequestChecksumValidation (checksumValidation );
46
- testConfig .setBodyType (bodType );
47
- testConfig .setContentSize (cs );
48
- testConfig .setPayloadSigning (ps );
49
- testConfig .setBucketType (bucket );
50
- configs .add (testConfig );
51
- }
43
+ UploadConfig testConfig = new UploadConfig ();
44
+ testConfig .setRequestChecksumValidation (checksumValidation );
45
+ testConfig .setBodyType (bodType );
46
+ testConfig .setContentSize (cs );
47
+ testConfig .setPayloadSigning (ps );
48
+ testConfig .setBucketType (BucketType .STANDARD_BUCKET );
49
+ configs .add (testConfig );
52
50
}
53
51
}
54
52
}
You can’t perform that action at this time.
0 commit comments