aboutsummaryrefslogtreecommitdiffstats
path: root/util/string/join_ut.cpp
diff options
context:
space:
mode:
authoruranix <uranix@yandex-team.ru>2022-02-10 16:47:58 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:47:58 +0300
commit5dc58bb9405dd89d5727cc5984b067cd5cf98133 (patch)
treeab6c56039a12afe5127ceb7e5bdbd30f28bd4565 /util/string/join_ut.cpp
parent01beb2a58f2156c63596a6dba7069307fc6f286e (diff)
downloadydb-5dc58bb9405dd89d5727cc5984b067cd5cf98133.tar.gz
Restoring authorship annotation for <uranix@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/string/join_ut.cpp')
-rw-r--r--util/string/join_ut.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/string/join_ut.cpp b/util/string/join_ut.cpp
index 3ed2b2459c..d85e8e26c0 100644
--- a/util/string/join_ut.cpp
+++ b/util/string/join_ut.cpp
@@ -32,8 +32,8 @@ Y_UNIT_TEST_SUITE(JoinStringTest) {
UNIT_ASSERT_EQUAL(JoinSeq(" ", vv), "1 2 3");
UNIT_ASSERT_EQUAL(JoinSeq(" ", vv), JoinRange(" ", vv.begin(), vv.end()));
UNIT_ASSERT_EQUAL(JoinRange(" ", v, v + 2), "1 2");
- UNIT_ASSERT_EQUAL(JoinSeq(" ", {}), "");
- UNIT_ASSERT_EQUAL(JoinSeq(" ", {42}), "42");
+ UNIT_ASSERT_EQUAL(JoinSeq(" ", {}), "");
+ UNIT_ASSERT_EQUAL(JoinSeq(" ", {42}), "42");
UNIT_ASSERT_EQUAL(JoinSeq(" ", {1, 2, 3}), "1 2 3");
UNIT_ASSERT_VALUES_EQUAL(JoinSeq(" ", v), "1 2 3");
}