File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -59,13 +59,15 @@ public static PutDataPolicySpectraS3Response createDataPolicyWithVersioningAndCr
59
59
if (checksumType == null ) {
60
60
//Create the data policy with versioning
61
61
return client .putDataPolicySpectraS3 (new PutDataPolicySpectraS3Request (dataPolicyName )
62
- .withVersioning (versioningLevel ).withAlwaysForcePutJobCreation (true ));
62
+ .withVersioning (versioningLevel )
63
+ .withAlwaysForcePutJobCreation (true ));
63
64
}
64
65
//Create the data policy with versioning and checksum
65
66
return client .putDataPolicySpectraS3 (new PutDataPolicySpectraS3Request (dataPolicyName )
66
67
.withVersioning (versioningLevel )
67
68
.withEndToEndCrcRequired (true )
68
- .withChecksumType (checksumType ).withAlwaysForcePutJobCreation (true ));
69
+ .withChecksumType (checksumType )
70
+ .withAlwaysForcePutJobCreation (true ));
69
71
}
70
72
71
73
/**
You can’t perform that action at this time.
0 commit comments