aboutsummaryrefslogtreecommitdiffstats
path: root/util/string/join_ut.cpp
diff options
context:
space:
mode:
authorswarmer <swarmer@yandex-team.ru>2022-02-10 16:46:31 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:31 +0300
commit11a24635da4c4f39428b182c49a7bc35e47c9534 (patch)
tree1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /util/string/join_ut.cpp
parent317da38588b7898a99fd9168571408123350012b (diff)
downloadydb-11a24635da4c4f39428b182c49a7bc35e47c9534.tar.gz
Restoring authorship annotation for <swarmer@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/string/join_ut.cpp')
-rw-r--r--util/string/join_ut.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/string/join_ut.cpp b/util/string/join_ut.cpp
index 645a235ad6..3ed2b2459c 100644
--- a/util/string/join_ut.cpp
+++ b/util/string/join_ut.cpp
@@ -35,7 +35,7 @@ Y_UNIT_TEST_SUITE(JoinStringTest) {
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");
+ UNIT_ASSERT_VALUES_EQUAL(JoinSeq(" ", v), "1 2 3");
}
Y_UNIT_TEST(StrContainerItems) {
@@ -143,9 +143,9 @@ Y_UNIT_TEST_SUITE(JoinStringTest) {
stream << MakeRangeJoiner(" ", std::initializer_list<TString>{vstring[0], vstring[1], vstring[2]});
UNIT_ASSERT_EQUAL(stream.Str(), result);
}
-
- // c-style array
- UNIT_ASSERT_VALUES_EQUAL(JoinSeq(" ", v), result);
+
+ // c-style array
+ UNIT_ASSERT_VALUES_EQUAL(JoinSeq(" ", v), result);
}
Y_UNIT_TEST(CustomToString) {