Updated comment to reflect actual compression behavior

This commit is contained in:
Sen Huang
2019-11-15 16:11:14 -05:00
parent 75c34684c0
commit db8efbfe7d
+1 -1
View File
@@ -1999,7 +1999,7 @@ static int basicUnitTests(U32 const seed, double compressibility)
/* long rle test */
{ size_t sampleSize = 0;
size_t expectedCompressedSize = 39; /* two RLE blocks, zstd 1.4.4 */
size_t expectedCompressedSize = 39; /* block 1: RLE, block 2: compressed, block 3: RLE, zstd 1.4.4 */
DISPLAYLEVEL(3, "test%3i : Long RLE test : ", testNb++);
memset((char*)CNBuffer+sampleSize, 'B', 256 KB - 1);
sampleSize += 256 KB - 1;