diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-01-29 08:57:26 +0300 |
---|---|---|
committer | Alexander Smirnov <alex@ydb.tech> | 2024-01-31 14:24:00 +0300 |
commit | c4aeab80acf6a8466b445bf5fb00d621ff873dd5 (patch) | |
tree | f8dee2341911f33f5685a151296df43fe776efe5 /library/cpp | |
parent | 273a1903865866db6b065e92527d19d3f51cd1a2 (diff) | |
download | ydb-c4aeab80acf6a8466b445bf5fb00d621ff873dd5.tar.gz |
Intermediate changes
Diffstat (limited to 'library/cpp')
-rw-r--r-- | library/cpp/yt/containers/unittests/sharded_set_ut.cpp | 6 |
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 2c4f8c59356..a954ea5151c 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; |