diff options
author | dmasloff <dmasloff@yandex-team.com> | 2024-09-05 20:05:47 +0300 |
---|---|---|
committer | dmasloff <dmasloff@yandex-team.com> | 2024-09-05 20:17:10 +0300 |
commit | 74184a40c15dc0649a769d9754d0ce7efb44db04 (patch) | |
tree | 433c12d17fec8928522e31fede6afb88e0b8f41c /util/generic/string_ut.cpp | |
parent | db4754b956955532cb1ad5fd119d5d199b790a0e (diff) | |
download | ydb-74184a40c15dc0649a769d9754d0ce7efb44db04.tar.gz |
FixNamespaceComments in /util
FixNamespaceComments in /util
bb9152570d7c258798644ead5a59f604de05ef3b
Diffstat (limited to 'util/generic/string_ut.cpp')
-rw-r--r-- | util/generic/string_ut.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/generic/string_ut.cpp b/util/generic/string_ut.cpp index 60dbf82a8b..bfd86bb07e 100644 --- a/util/generic/string_ut.cpp +++ b/util/generic/string_ut.cpp @@ -1165,7 +1165,7 @@ Y_UNIT_TEST_SUITE(TStringConversionTest) { std::string_view stdAbra = abra; UNIT_ASSERT_VALUES_EQUAL(stdAbra, "cadabra"); } -} +} // Y_UNIT_TEST_SUITE(TStringConversionTest) Y_UNIT_TEST_SUITE(HashFunctorTests) { Y_UNIT_TEST(TestTransparency) { @@ -1178,7 +1178,7 @@ Y_UNIT_TEST_SUITE(HashFunctorTests) { UNIT_ASSERT_VALUES_EQUAL(h(ptr), h(str)); UNIT_ASSERT_VALUES_EQUAL(h(ptr), h(stdStr)); } -} +} // Y_UNIT_TEST_SUITE(HashFunctorTests) #if !defined(TSTRING_IS_STD_STRING) Y_UNIT_TEST_SUITE(StdNonConformant) { @@ -1208,7 +1208,7 @@ Y_UNIT_TEST_SUITE(StdNonConformant) { UNIT_ASSERT_VALUES_EQUAL(s, "xabc"); UNIT_ASSERT_VALUES_EQUAL(TString(s.c_str()), "xabc"); } -} +} // Y_UNIT_TEST_SUITE(StdNonConformant) #endif Y_UNIT_TEST_SUITE(Interop) { @@ -1243,4 +1243,4 @@ Y_UNIT_TEST_SUITE(Interop) { Y_UNIT_TEST(TestTemp) { UNIT_ASSERT_VALUES_EQUAL("x" + ConstRef(TString("y")), "xy"); } -} +} // Y_UNIT_TEST_SUITE(Interop) |