aboutsummaryrefslogtreecommitdiffstats
path: root/util/generic/bitmap_ut.cpp
diff options
context:
space:
mode:
authorAlexey Borzenkov <snaury@yandex-team.ru>2022-02-10 16:47:43 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:47:43 +0300
commit330c83f8c116bd45316397b179275e9d87007e7d (patch)
treec0748b5dcbade83af788c0abfa89c0383d6b779c /util/generic/bitmap_ut.cpp
parent22d92781ba2a10b7fb5b977b7d1a5c40ff53885f (diff)
downloadydb-330c83f8c116bd45316397b179275e9d87007e7d.tar.gz
Restoring authorship annotation for Alexey Borzenkov <snaury@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/generic/bitmap_ut.cpp')
-rw-r--r--util/generic/bitmap_ut.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/util/generic/bitmap_ut.cpp b/util/generic/bitmap_ut.cpp
index 7b236399465..087d34a8dcc 100644
--- a/util/generic/bitmap_ut.cpp
+++ b/util/generic/bitmap_ut.cpp
@@ -584,14 +584,14 @@ Y_UNIT_TEST_SUITE(TBitMapTest) {
}
}
}
-
- Y_UNIT_TEST(TestResetLargeRangeDyn) {
- TDynBitMap bm;
- bm.Set(0);
- bm.Reset(1, 2048);
- bm.Set(2048);
- for (size_t k = 0; k <= 2048; ++k) {
- UNIT_ASSERT_VALUES_EQUAL(bm.Get(k), k >= 1 && k < 2048 ? 0 : 1);
- }
- }
+
+ Y_UNIT_TEST(TestResetLargeRangeDyn) {
+ TDynBitMap bm;
+ bm.Set(0);
+ bm.Reset(1, 2048);
+ bm.Set(2048);
+ for (size_t k = 0; k <= 2048; ++k) {
+ UNIT_ASSERT_VALUES_EQUAL(bm.Get(k), k >= 1 && k < 2048 ? 0 : 1);
+ }
+ }
}