aboutsummaryrefslogtreecommitdiffstats
path: root/util/stream/ios_ut.cpp
diff options
context:
space:
mode:
authoraosipenko <aosipenko@yandex-team.ru>2022-02-10 16:48:08 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:48:08 +0300
commit69e3c43df1c96bc2ac8946bf4dfb1f5fc438ff7f (patch)
treeb222e5ac2e2e98872661c51ccceee5da0d291e13 /util/stream/ios_ut.cpp
parent948fd24d47d4b3b7815aaef1686aea00ef3f4288 (diff)
downloadydb-69e3c43df1c96bc2ac8946bf4dfb1f5fc438ff7f.tar.gz
Restoring authorship annotation for <aosipenko@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/stream/ios_ut.cpp')
-rw-r--r--util/stream/ios_ut.cpp42
1 files changed, 21 insertions, 21 deletions
diff --git a/util/stream/ios_ut.cpp b/util/stream/ios_ut.cpp
index 9fd05ebd87..139f4296e5 100644
--- a/util/stream/ios_ut.cpp
+++ b/util/stream/ios_ut.cpp
@@ -304,32 +304,32 @@ namespace {
size_t Index_;
};
- const char Text[] =
+ const char Text[] =
// UTF8 encoded "one \ntwo\r\nthree\n\tfour\nfive\n" in russian and ...
- "один \n"
- "два\r\n"
- "три\n"
- "\tчетыре\n"
- "пять\n"
+ "один \n"
+ "два\r\n"
+ "три\n"
+ "\tчетыре\n"
+ "пять\n"
// ... additional test cases
- "\r\n"
- "\n\r" // this char goes to the front of the next string
- "one two\n"
- "123\r\n"
- "\t\r ";
+ "\r\n"
+ "\n\r" // this char goes to the front of the next string
+ "one two\n"
+ "123\r\n"
+ "\t\r ";
- const char* Expected[] = {
+ const char* Expected[] = {
// UTF8 encoded "one ", "two", "three", "\tfour", "five" in russian and ...
- "один ",
- "два",
- "три",
- "\tчетыре",
- "пять",
+ "один ",
+ "два",
+ "три",
+ "\tчетыре",
+ "пять",
// ... additional test cases
- "",
- "",
- "\rone two",
- "123",
+ "",
+ "",
+ "\rone two",
+ "123",
"\t\r "};
void TestStreamReadTo1(IInputStream& input, const char* comment) {
TString tmp;