aboutsummaryrefslogtreecommitdiffstats
path: root/util/stream/length_ut.cpp
diff options
context:
space:
mode:
authorVlad Yaroslavlev <vladon@vladon.com>2022-02-10 16:46:23 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:23 +0300
commit706b83ed7de5a473436620367af31fc0ceecde07 (patch)
tree103305d30dec77e8f6367753367f59b3cd68f9f1 /util/stream/length_ut.cpp
parent918e8a1574070d0ec733f0b76cfad8f8892ad2e5 (diff)
downloadydb-706b83ed7de5a473436620367af31fc0ceecde07.tar.gz
Restoring authorship annotation for Vlad Yaroslavlev <vladon@vladon.com>. Commit 1 of 2.
Diffstat (limited to 'util/stream/length_ut.cpp')
-rw-r--r--util/stream/length_ut.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/stream/length_ut.cpp b/util/stream/length_ut.cpp
index 8968448954..3dd7f44abc 100644
--- a/util/stream/length_ut.cpp
+++ b/util/stream/length_ut.cpp
@@ -2,7 +2,7 @@
#include <library/cpp/testing/unittest/registar.h>
-#include <util/generic/string.h>
+#include <util/generic/string.h>
Y_UNIT_TEST_SUITE(TestLengthIO) {
Y_UNIT_TEST(TestLengthLimitedInput) {
@@ -20,7 +20,7 @@ Y_UNIT_TEST_SUITE(TestLengthIO) {
TStringStream s1("abc\ndef\n");
TCountingInput l1(&s1);
- TString s;
+ TString s;
l1.ReadLine(s);
UNIT_ASSERT_VALUES_EQUAL(l1.Counter(), 4);
@@ -41,10 +41,10 @@ Y_UNIT_TEST_SUITE(TestLengthIO) {
l1.Write('1');
UNIT_ASSERT_VALUES_EQUAL(l1.Counter(), 1);
- l1.Write(TString("abcd"));
+ l1.Write(TString("abcd"));
UNIT_ASSERT_VALUES_EQUAL(l1.Counter(), 5);
- TString buf("aaa");
+ TString buf("aaa");
IOutputStream::TPart parts[] = {{buf.data(), buf.size()}, {buf.data(), buf.size()}, {buf.data(), buf.size()}};
l1.Write(parts, 3);
UNIT_ASSERT_VALUES_EQUAL(l1.Counter(), 14);