diff --git a/sdk/storage/azure-storage-blob-cryptography/src/test/java/com/azure/storage/blob/specialized/cryptography/EncyptedBlockBlobAPITest.groovy b/sdk/storage/azure-storage-blob-cryptography/src/test/java/com/azure/storage/blob/specialized/cryptography/EncyptedBlockBlobAPITest.groovy index 623f844b101ad..e7250d673e6e5 100644 --- a/sdk/storage/azure-storage-blob-cryptography/src/test/java/com/azure/storage/blob/specialized/cryptography/EncyptedBlockBlobAPITest.groovy +++ b/sdk/storage/azure-storage-blob-cryptography/src/test/java/com/azure/storage/blob/specialized/cryptography/EncyptedBlockBlobAPITest.groovy @@ -356,8 +356,8 @@ class EncyptedBlockBlobAPITest extends APISpec { where: dataSize | _ 3000 | _ // small -// 5 * 1024 * 1024 - 10 | _ // medium -// 20 * 1024 * 1024 - 10 | _ // large + 5 * 1024 * 1024 - 10 | _ // medium + 20 * 1024 * 1024 - 10 | _ // large } boolean encryptionTestHelper(int size, int byteBufferCount) { @@ -1324,16 +1324,16 @@ class EncyptedBlockBlobAPITest extends APISpec { where: fileSize | version -// 0 | EncryptionVersion.V1 // empty file -// 20 | EncryptionVersion.V1 // small file -// 16 * 1024 * 1024 | EncryptionVersion.V1 // medium file in several chunks -// 8 * 1026 * 1024 + 10 | EncryptionVersion.V1 // medium file not aligned to block + 0 | EncryptionVersion.V1 // empty file + 20 | EncryptionVersion.V1 // small file + 16 * 1024 * 1024 | EncryptionVersion.V1 // medium file in several chunks + 8 * 1026 * 1024 + 10 | EncryptionVersion.V1 // medium file not aligned to block 50 * Constants.MB | EncryptionVersion.V1 // large file requiring multiple requests -// 0 | EncryptionVersion.V2 // empty file -// 20 | EncryptionVersion.V2 // small file -// 16 * 1024 * 1024 | EncryptionVersion.V2 // medium file in several chunks -// 8 * 1026 * 1024 + 10 | EncryptionVersion.V2 // medium file not aligned to block -// 50 * Constants.MB | EncryptionVersion.V2 // large file requiring multiple requests + 0 | EncryptionVersion.V2 // empty file + 20 | EncryptionVersion.V2 // small file + 16 * 1024 * 1024 | EncryptionVersion.V2 // medium file in several chunks + 8 * 1026 * 1024 + 10 | EncryptionVersion.V2 // medium file not aligned to block + 50 * Constants.MB | EncryptionVersion.V2 // large file requiring multiple requests // Files larger than 2GB to test no integer overflow are left to stress/perf tests to keep test passes short. }