diff options
author | yazevnul <yazevnul@yandex-team.ru> | 2022-02-10 16:46:48 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:48 +0300 |
commit | 9abfb1a53b7f7b791444d1378e645d8fad9b06ed (patch) | |
tree | 49e222ea1c5804306084bb3ae065bb702625360f /util/stream/zlib_ut.cpp | |
parent | 8cbc307de0221f84c80c42dcbe07d40727537e2c (diff) | |
download | ydb-9abfb1a53b7f7b791444d1378e645d8fad9b06ed.tar.gz |
Restoring authorship annotation for <yazevnul@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/stream/zlib_ut.cpp')
-rw-r--r-- | util/stream/zlib_ut.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/util/stream/zlib_ut.cpp b/util/stream/zlib_ut.cpp index b145da317f..2290b4a9de 100644 --- a/util/stream/zlib_ut.cpp +++ b/util/stream/zlib_ut.cpp @@ -51,11 +51,11 @@ private: int Limit_; }; -Y_UNIT_TEST_SUITE(TZLibTest) { +Y_UNIT_TEST_SUITE(TZLibTest) { static const TString DATA = "8s7d5vc6s5vc67sa4c65ascx6asd4xcv76adsfxv76s"; static const TString DATA2 = "cn8wk2bd9vb3vdfif83g1ks94bfiovtwv"; - Y_UNIT_TEST(Compress) { + Y_UNIT_TEST(Compress) { TUnbufferedFileOutput o(ZDATA); TZLibCompress c(&o, ZLib::ZLib); @@ -64,7 +64,7 @@ Y_UNIT_TEST_SUITE(TZLibTest) { o.Finish(); } - Y_UNIT_TEST(Decompress) { + Y_UNIT_TEST(Decompress) { TTempFile tmpFile(ZDATA); { @@ -90,7 +90,7 @@ Y_UNIT_TEST_SUITE(TZLibTest) { } } - Y_UNIT_TEST(DecompressTwoStreams) { + Y_UNIT_TEST(DecompressTwoStreams) { // Check that Decompress(Compress(X) + Compress(Y)) == X + Y TTempFile tmpFile(ZDATA); { @@ -126,7 +126,7 @@ Y_UNIT_TEST_SUITE(TZLibTest) { TVector<char>().swap(buf); } - Y_UNIT_TEST(DecompressFirstOfTwoStreams) { + Y_UNIT_TEST(DecompressFirstOfTwoStreams) { // Check that Decompress(Compress(X) + Compress(Y)) == X when single stream is allowed TTempFile tmpFile(ZDATA); { |