aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/digest/crc32c/crc32c_ut.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/digest/crc32c/crc32c_ut.cpp')
-rw-r--r--library/cpp/digest/crc32c/crc32c_ut.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/library/cpp/digest/crc32c/crc32c_ut.cpp b/library/cpp/digest/crc32c/crc32c_ut.cpp
index 02d4c12fec..aa31b83422 100644
--- a/library/cpp/digest/crc32c/crc32c_ut.cpp
+++ b/library/cpp/digest/crc32c/crc32c_ut.cpp
@@ -8,15 +8,15 @@ Y_UNIT_TEST_SUITE(TestCrc32c) {
}
Y_UNIT_TEST(TestUnaligned) {
- const TString str(1000, 'a');
- for (size_t substrLen = 0; substrLen <= str.length(); ++substrLen) {
- const ui32 crc = Crc32c(str.data(), substrLen);
- for (size_t offset = 1; offset + substrLen <= str.length(); ++offset) {
- UNIT_ASSERT_VALUES_EQUAL(Crc32c(str.data() + offset, substrLen), crc);
- }
- }
- }
-
+ const TString str(1000, 'a');
+ for (size_t substrLen = 0; substrLen <= str.length(); ++substrLen) {
+ const ui32 crc = Crc32c(str.data(), substrLen);
+ for (size_t offset = 1; offset + substrLen <= str.length(); ++offset) {
+ UNIT_ASSERT_VALUES_EQUAL(Crc32c(str.data() + offset, substrLen), crc);
+ }
+ }
+ }
+
Y_UNIT_TEST(TestExtend) {
UNIT_ASSERT_VALUES_EQUAL(Crc32cExtend(1, "abc", 3), ui32(2466950601));
}