diff options
author | Vasily Gerasimov <[email protected]> | 2022-02-10 16:49:09 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:49:09 +0300 |
commit | 6cdc8f140213c595e4ad38bc3d97fcef1146b8c3 (patch) | |
tree | f69637041e6fed76ebae0c74ae1fa0c4be6ab5b4 /util/string/subst_ut.cpp | |
parent | e5d4696304c6689379ac7ce334512404d4b7836c (diff) |
Restoring authorship annotation for Vasily Gerasimov <[email protected]>. 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..60ea6aabba6 100644 --- a/util/string/subst_ut.cpp +++ b/util/string/subst_ut.cpp @@ -130,8 +130,8 @@ Y_UNIT_TEST_SUITE(TStringSubst) { s = "aaa"; SubstGlobal(s, "a", ""); UNIT_ASSERT_EQUAL(s, TString("")); - s = "abcdefbcbcdfb"; - SubstGlobal(s, "bc", "bbc", 2); + s = "abcdefbcbcdfb"; + SubstGlobal(s, "bc", "bbc", 2); UNIT_ASSERT_EQUAL(s, TString("abcdefbbcbbcdfb")); s = "Москва ~ Париж"; SubstGlobal(s, " ~ ", " "); @@ -166,7 +166,7 @@ Y_UNIT_TEST_SUITE(TStringSubst) { UNIT_ASSERT_EQUAL(w, u"abcdaBcd"); TString s = "aaa"; - SubstGlobal(s, 'a', 'b', 1); + SubstGlobal(s, 'a', 'b', 1); UNIT_ASSERT_EQUAL(s, TString("abb")); } |