summaryrefslogtreecommitdiffstats
path: root/util/stream/zlib_ut.cpp
diff options
context:
space:
mode:
authoryazevnul <[email protected]>2022-02-10 16:46:46 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:46:46 +0300
commit8cbc307de0221f84c80c42dcbe07d40727537e2c (patch)
tree625d5a673015d1df891e051033e9fcde5c7be4e5 /util/stream/zlib_ut.cpp
parent30d1ef3941e0dc835be7609de5ebee66958f215a (diff)
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/stream/zlib_ut.cpp')
-rw-r--r--util/stream/zlib_ut.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/util/stream/zlib_ut.cpp b/util/stream/zlib_ut.cpp
index 2290b4a9dee..b145da317f9 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);
{