aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/deprecated/split/delim_string_iter_ut.cpp
diff options
context:
space:
mode:
authorgrand <grand@yandex-team.ru>2022-02-10 16:50:07 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:50:07 +0300
commita0e29f0026d32a60a618a620f30035c264346175 (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/deprecated/split/delim_string_iter_ut.cpp
parent7eb3862cccdb866e7e739123c8024ccec628bb62 (diff)
downloadydb-a0e29f0026d32a60a618a620f30035c264346175.tar.gz
Restoring authorship annotation for <grand@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/deprecated/split/delim_string_iter_ut.cpp')
-rw-r--r--library/cpp/deprecated/split/delim_string_iter_ut.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/deprecated/split/delim_string_iter_ut.cpp b/library/cpp/deprecated/split/delim_string_iter_ut.cpp
index 997d5f32f9..18a8b2a160 100644
--- a/library/cpp/deprecated/split/delim_string_iter_ut.cpp
+++ b/library/cpp/deprecated/split/delim_string_iter_ut.cpp
@@ -19,16 +19,16 @@ static void AssertStringSplit(const TString& str, const TString& delim, const TV
Y_UNIT_TEST_SUITE(TDelimStrokaIterTestSuite) {
Y_UNIT_TEST(SingleCharacterAsDelimiter) {
AssertStringSplit(
- "Hello words!", " ", {"Hello", "words!"});
+ "Hello words!", " ", {"Hello", "words!"});
}
Y_UNIT_TEST(MultipleCharactersAsDelimiter) {
AssertStringSplit(
- "0, 1, 1, 2, 3, 5, 8, 13, 21, 34", "1, ", {"0, ", "", "2, 3, 5, 8, 13, 2", "34"});
+ "0, 1, 1, 2, 3, 5, 8, 13, 21, 34", "1, ", {"0, ", "", "2, 3, 5, 8, 13, 2", "34"});
}
Y_UNIT_TEST(NoDelimitersPresent) {
- AssertStringSplit("This string could be yours", "\t", {"This string could be yours"});
+ AssertStringSplit("This string could be yours", "\t", {"This string could be yours"});
}
Y_UNIT_TEST(Cdr) {