Skip to content

Commit df41b22

Browse files
committed
nit fix
1 parent b20162f commit df41b22

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

components/core/tests/test-StreamingCompression.cpp

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
#include <boost/filesystem/operations.hpp>
1111
#include <Catch2/single_include/catch2/catch.hpp>
12-
#include <lzma.h>
1312
#include <zstd.h>
1413

1514
#include "../src/clp/Array.hpp"
@@ -35,20 +34,14 @@ using std::string_view;
3534
namespace {
3635
constexpr string_view cCompressedFilePath{"test_streaming_compressed_file.bin"};
3736
constexpr size_t cBufferSize{128L * 1024 * 1024}; // 128MB
38-
// Interleave no-ops to ensure the integrity of the compressor states at all times.
3937
constexpr auto cCompressionChunkSizes = std::to_array<size_t>(
40-
{cBufferSize / 100,
41-
0,
38+
{0, // no-op
39+
cBufferSize / 100,
4240
cBufferSize / 50,
43-
0,
4441
cBufferSize / 25,
45-
0,
4642
cBufferSize / 10,
47-
0,
4843
cBufferSize / 5,
49-
0,
5044
cBufferSize / 2,
51-
0,
5245
cBufferSize}
5346
);
5447

0 commit comments

Comments
 (0)