aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authoryurikiselev <yurikiselev@yandex-team.ru>2022-02-10 16:47:58 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:47:58 +0300
commite6e69f125cd76964f671d872789f529798c82b85 (patch)
tree0d1e02bec34e8f1c2cd3f8247681dc897274009e /util
parent707ef321bf057fe3d00103ed5b2c59bc1580f56c (diff)
downloadydb-e6e69f125cd76964f671d872789f529798c82b85.tar.gz
Restoring authorship annotation for <yurikiselev@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util')
-rw-r--r--util/string/subst_ut.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/string/subst_ut.cpp b/util/string/subst_ut.cpp
index 21eccef779..d55e4d890b 100644
--- a/util/string/subst_ut.cpp
+++ b/util/string/subst_ut.cpp
@@ -136,7 +136,7 @@ Y_UNIT_TEST_SUITE(TStringSubst) {
s = "Москва ~ Париж";
SubstGlobal(s, " ~ ", " ");
UNIT_ASSERT_EQUAL(s, TString("Москва Париж"));
- }
+ }
Y_UNIT_TEST(TestSubstGlobalOldRet) {
const TString s1 = "aaa";
@@ -164,7 +164,7 @@ Y_UNIT_TEST_SUITE(TStringSubst) {
TUtf16String w = u"abcdabcd";
SubstGlobal(w, wchar16('b'), wchar16('B'), 3);
UNIT_ASSERT_EQUAL(w, u"abcdaBcd");
-
+
TString s = "aaa";
SubstGlobal(s, 'a', 'b', 1);
UNIT_ASSERT_EQUAL(s, TString("abb"));