aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/yt/containers/unittests/sharded_set_ut.cpp
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2024-01-29 08:57:26 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2024-01-29 09:08:36 +0300
commit5e3cebce04bcb2566d4e8cbdf023c61932f39ad4 (patch)
tree5874d7650f9779855d30bd4318ee36447fa6669b /library/cpp/yt/containers/unittests/sharded_set_ut.cpp
parent6922728a2f27338a00b68625e876d33f04530f28 (diff)
downloadydb-5e3cebce04bcb2566d4e8cbdf023c61932f39ad4.tar.gz
Intermediate changes
Diffstat (limited to 'library/cpp/yt/containers/unittests/sharded_set_ut.cpp')
-rw-r--r--library/cpp/yt/containers/unittests/sharded_set_ut.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/yt/containers/unittests/sharded_set_ut.cpp b/library/cpp/yt/containers/unittests/sharded_set_ut.cpp
index 2c4f8c5935..a954ea5151 100644
--- a/library/cpp/yt/containers/unittests/sharded_set_ut.cpp
+++ b/library/cpp/yt/containers/unittests/sharded_set_ut.cpp
@@ -21,7 +21,7 @@ using TSet = TShardedSet<int, 16, TIntToShard>;
////////////////////////////////////////////////////////////////////////////////
-TEST(CompactSetTest, Insert)
+TEST(TShardedSetTest, Insert)
{
TSet set;
@@ -41,7 +41,7 @@ TEST(CompactSetTest, Insert)
EXPECT_EQ(0u, set.count(4));
}
-TEST(CompactSetTest, Erase)
+TEST(TShardedSetTest, Erase)
{
TSet set;
@@ -65,7 +65,7 @@ TEST(CompactSetTest, Erase)
EXPECT_EQ(0u, set.count(8));
}
-TEST(CompactSetTest, StressTest)
+TEST(TShardedSetTest, StressTest)
{
TSet set;