From df41b227e94fe7de2f9978ff3772ae97a8681443 Mon Sep 17 00:00:00 2001 From: Bingran Hu Date: Fri, 20 Dec 2024 18:37:52 -0500 Subject: [PATCH] nit fix --- components/core/tests/test-StreamingCompression.cpp | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/components/core/tests/test-StreamingCompression.cpp b/components/core/tests/test-StreamingCompression.cpp index c3e981562..22582cff2 100644 --- a/components/core/tests/test-StreamingCompression.cpp +++ b/components/core/tests/test-StreamingCompression.cpp @@ -9,7 +9,6 @@ #include #include -#include #include #include "../src/clp/Array.hpp" @@ -35,20 +34,14 @@ using std::string_view; namespace { constexpr string_view cCompressedFilePath{"test_streaming_compressed_file.bin"}; constexpr size_t cBufferSize{128L * 1024 * 1024}; // 128MB -// Interleave no-ops to ensure the integrity of the compressor states at all times. constexpr auto cCompressionChunkSizes = std::to_array( - {cBufferSize / 100, - 0, + {0, // no-op + cBufferSize / 100, cBufferSize / 50, - 0, cBufferSize / 25, - 0, cBufferSize / 10, - 0, cBufferSize / 5, - 0, cBufferSize / 2, - 0, cBufferSize} );