aboutsummaryrefslogtreecommitdiffstats
path: root/util/generic/bitops_ut.cpp
diff options
context:
space:
mode:
authorjimmy <jimmy@yandex-team.ru>2022-02-10 16:49:38 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:38 +0300
commitaffdafdb1fc09bf0bfc384355143ee6db9e90046 (patch)
treeda80bda4720043db2e41dfd1c7fd04de32021fd3 /util/generic/bitops_ut.cpp
parent4e4faf8d95a4916a49f6674f3ff50e13799fbaa6 (diff)
downloadydb-affdafdb1fc09bf0bfc384355143ee6db9e90046.tar.gz
Restoring authorship annotation for <jimmy@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/generic/bitops_ut.cpp')
-rw-r--r--util/generic/bitops_ut.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/util/generic/bitops_ut.cpp b/util/generic/bitops_ut.cpp
index d23c2b5c27..96c3a61ab8 100644
--- a/util/generic/bitops_ut.cpp
+++ b/util/generic/bitops_ut.cpp
@@ -1,7 +1,7 @@
-#include "bitops.h"
-
+#include "bitops.h"
+
#include <library/cpp/testing/unittest/registar.h>
-
+
#include <util/string/builder.h>
template <typename T>
@@ -46,11 +46,11 @@ static T ReverseBitsSlow(T v) {
// DO_NOT_STYLE
Y_UNIT_TEST_SUITE(TBitOpsTest) {
Y_UNIT_TEST(TestCountTrailingZeroBits) {
- TestCTZ<unsigned int>();
+ TestCTZ<unsigned int>();
TestCTZ<unsigned long>();
TestCTZ<unsigned long long>();
}
-
+
Y_UNIT_TEST(TestIsPowerOf2) {
UNIT_ASSERT(!IsPowerOf2(-2));
UNIT_ASSERT(!IsPowerOf2(-1));