summaryrefslogtreecommitdiffstats
path: root/util/generic/hash_ut.cpp
diff options
context:
space:
mode:
authormelkov <[email protected]>2022-02-10 16:48:13 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:48:13 +0300
commit438546c8737d5c1fdeb31157dcf999717d930eec (patch)
treed29d229abd2f9f889b9b7eb148d635059dc26acf /util/generic/hash_ut.cpp
parent96647fad5355ff5ef45a00a6d85c097028584ab0 (diff)
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/generic/hash_ut.cpp')
-rw-r--r--util/generic/hash_ut.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/util/generic/hash_ut.cpp b/util/generic/hash_ut.cpp
index 0551d587708..9bf1a3b9b6c 100644
--- a/util/generic/hash_ut.cpp
+++ b/util/generic/hash_ut.cpp
@@ -346,13 +346,13 @@ void THashTest::TestHMMap1() {
hmap.insert(HMapType::value_type(23, 0));
UNIT_ASSERT(hmap.count(12325) == 2);
-
- UNIT_ASSERT(hmap.bucket_count() > 3000);
- for (size_t n = 0; n < 10; n++) {
- hmap.clear();
- hmap.insert(HMapType::value_type(1, 2));
- }
- UNIT_ASSERT(hmap.bucket_count() < 30);
+
+ UNIT_ASSERT(hmap.bucket_count() > 3000);
+ for (size_t n = 0; n < 10; n++) {
+ hmap.clear();
+ hmap.insert(HMapType::value_type(1, 2));
+ }
+ UNIT_ASSERT(hmap.bucket_count() < 30);
}
void THashTest::TestHMMapHas() {