diff options
author | melkov <[email protected]> | 2022-02-10 16:48:14 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:48:14 +0300 |
commit | 2c532b38e6aeb4fd88531027c7335690fd34c4e5 (patch) | |
tree | b222e5ac2e2e98872661c51ccceee5da0d291e13 /util/generic/hash_ut.cpp | |
parent | 438546c8737d5c1fdeb31157dcf999717d930eec (diff) |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util/generic/hash_ut.cpp')
-rw-r--r-- | util/generic/hash_ut.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/util/generic/hash_ut.cpp b/util/generic/hash_ut.cpp index 9bf1a3b9b6c..0551d587708 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() { |