aboutsummaryrefslogtreecommitdiffstats
path: root/util/string/subst_ut.cpp
diff options
context:
space:
mode:
authorsobols <sobols@yandex-team.ru>2022-02-10 16:47:08 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:47:08 +0300
commit03335cb18337a0ef51966452a66a69b01abea218 (patch)
treeb83306b6e37edeea782e9eed673d89286c4fef35 /util/string/subst_ut.cpp
parent09961b69c61f471ddd594e0fd877df62a8021562 (diff)
downloadydb-03335cb18337a0ef51966452a66a69b01abea218.tar.gz
Restoring authorship annotation for <sobols@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/string/subst_ut.cpp')
-rw-r--r--util/string/subst_ut.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/string/subst_ut.cpp b/util/string/subst_ut.cpp
index 284d54c095a..21eccef7795 100644
--- a/util/string/subst_ut.cpp
+++ b/util/string/subst_ut.cpp
@@ -161,9 +161,9 @@ Y_UNIT_TEST_SUITE(TStringSubst) {
}
Y_UNIT_TEST(TestSubstCharGlobal) {
- TUtf16String w = u"abcdabcd";
+ TUtf16String w = u"abcdabcd";
SubstGlobal(w, wchar16('b'), wchar16('B'), 3);
- UNIT_ASSERT_EQUAL(w, u"abcdaBcd");
+ UNIT_ASSERT_EQUAL(w, u"abcdaBcd");
TString s = "aaa";
SubstGlobal(s, 'a', 'b', 1);
@@ -171,9 +171,9 @@ Y_UNIT_TEST_SUITE(TStringSubst) {
}
Y_UNIT_TEST(TestSubstCharGlobalRet) {
- const TUtf16String w1 = u"abcdabcd";
+ const TUtf16String w1 = u"abcdabcd";
const TUtf16String w2 = SubstGlobalCopy(w1, wchar16('b'), wchar16('B'), 3);
- UNIT_ASSERT_EQUAL(w2, u"abcdaBcd");
+ UNIT_ASSERT_EQUAL(w2, u"abcdaBcd");
const TString s1 = "aaa";
const TString s2 = SubstGlobalCopy(s1, 'a', 'b', 1);