@@ -36,19 +36,17 @@ public static List<FlattenUploadConfig> testConfigs() {
36
36
RequestChecksumCalculation [] checksumValidations = {RequestChecksumCalculation .WHEN_REQUIRED ,
37
37
RequestChecksumCalculation .WHEN_SUPPORTED };
38
38
for (RequestChecksumCalculation checksumValidation : checksumValidations ) {
39
- for (BucketType bucketType : BucketType .values ()) {
40
- for (UploadStreamingRegressionTesting .BodyType bodType : UploadStreamingRegressionTesting .BodyType .values ()) {
41
- for (UploadStreamingRegressionTesting .ContentSize cs :
42
- UploadStreamingRegressionTesting .ContentSize .values ()) {
43
- for (boolean ps : payloadSign ) {
44
- FlattenUploadConfig testConfig = new FlattenUploadConfig ();
45
- testConfig .setBucketType (bucketType );
46
- testConfig .setRequestChecksumValidation (checksumValidation );
47
- testConfig .setBodyType (bodType );
48
- testConfig .setContentSize (cs );
49
- testConfig .setPayloadSigning (ps );
50
- configs .add (testConfig );
51
- }
39
+ for (UploadStreamingRegressionTesting .BodyType bodType : UploadStreamingRegressionTesting .BodyType .values ()) {
40
+ for (UploadStreamingRegressionTesting .ContentSize cs :
41
+ UploadStreamingRegressionTesting .ContentSize .values ()) {
42
+ for (boolean ps : payloadSign ) {
43
+ FlattenUploadConfig testConfig = new FlattenUploadConfig ();
44
+ testConfig .setBucketType (BucketType .STANDARD_BUCKET );
45
+ testConfig .setRequestChecksumValidation (checksumValidation );
46
+ testConfig .setBodyType (bodType );
47
+ testConfig .setContentSize (cs );
48
+ testConfig .setPayloadSigning (ps );
49
+ configs .add (testConfig );
52
50
}
53
51
}
54
52
}
0 commit comments