diff options
author | grand <grand@yandex-team.ru> | 2022-02-10 16:50:06 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:06 +0300 |
commit | 7eb3862cccdb866e7e739123c8024ccec628bb62 (patch) | |
tree | 5ce974787810a396bb1c1cca605feef8f9e85679 /util/string/join_ut.cpp | |
parent | 13dbd0acb78595551b843005d6bd021bdc1a859b (diff) | |
download | ydb-7eb3862cccdb866e7e739123c8024ccec628bb62.tar.gz |
Restoring authorship annotation for <grand@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/string/join_ut.cpp')
-rw-r--r-- | util/string/join_ut.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/string/join_ut.cpp b/util/string/join_ut.cpp index 3ed2b2459c..d69442d18b 100644 --- a/util/string/join_ut.cpp +++ b/util/string/join_ut.cpp @@ -34,7 +34,7 @@ Y_UNIT_TEST_SUITE(JoinStringTest) { UNIT_ASSERT_EQUAL(JoinRange(" ", v, v + 2), "1 2"); UNIT_ASSERT_EQUAL(JoinSeq(" ", {}), ""); UNIT_ASSERT_EQUAL(JoinSeq(" ", {42}), "42"); - UNIT_ASSERT_EQUAL(JoinSeq(" ", {1, 2, 3}), "1 2 3"); + UNIT_ASSERT_EQUAL(JoinSeq(" ", {1, 2, 3}), "1 2 3"); UNIT_ASSERT_VALUES_EQUAL(JoinSeq(" ", v), "1 2 3"); } |