diff options
author | Egor Kochetov <gluk47@gmail.com> | 2022-02-10 16:50:36 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:36 +0300 |
commit | 40896b241c91572ea1369526ee1e6ae0ba340f34 (patch) | |
tree | cb6d8f482e66c136ec128a42417cd5f858520d12 /util/string/subst_ut.cpp | |
parent | 3889d4c01a589a555fbc33d66279be23e267ab3b (diff) | |
download | ydb-40896b241c91572ea1369526ee1e6ae0ba340f34.tar.gz |
Restoring authorship annotation for Egor Kochetov <gluk47@gmail.com>. Commit 1 of 2.
Diffstat (limited to 'util/string/subst_ut.cpp')
-rw-r--r-- | util/string/subst_ut.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/string/subst_ut.cpp b/util/string/subst_ut.cpp index 21eccef7795..5fcf91d4238 100644 --- a/util/string/subst_ut.cpp +++ b/util/string/subst_ut.cpp @@ -133,9 +133,9 @@ Y_UNIT_TEST_SUITE(TStringSubst) { s = "abcdefbcbcdfb"; SubstGlobal(s, "bc", "bbc", 2); UNIT_ASSERT_EQUAL(s, TString("abcdefbbcbbcdfb")); - s = "Москва ~ Париж"; - SubstGlobal(s, " ~ ", " "); - UNIT_ASSERT_EQUAL(s, TString("Москва Париж")); + s = "Москва ~ Париж"; + SubstGlobal(s, " ~ ", " "); + UNIT_ASSERT_EQUAL(s, TString("Москва Париж")); } Y_UNIT_TEST(TestSubstGlobalOldRet) { |