diff options
author | a-sumin <[email protected]> | 2022-02-10 16:52:03 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:52:03 +0300 |
commit | 68c9890b02ba56ecb22af49ad19ec70a71dd2a08 (patch) | |
tree | fd171b1ec7190dd0156fa61707efcafdc310fc76 /util/digest/multi_ut.cpp | |
parent | 8adaf54035169f30420bfba09aad86a04c0ab068 (diff) |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/digest/multi_ut.cpp')
-rw-r--r-- | util/digest/multi_ut.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/util/digest/multi_ut.cpp b/util/digest/multi_ut.cpp index dff64ff0cc1..cd9edef5dbc 100644 --- a/util/digest/multi_ut.cpp +++ b/util/digest/multi_ut.cpp @@ -8,7 +8,7 @@ class TMultiHashTest: public TTestBase { UNIT_TEST_SUITE(TMultiHashTest); UNIT_TEST(TestStrInt) UNIT_TEST(TestIntStr) - UNIT_TEST(TestSimpleCollision) + UNIT_TEST(TestSimpleCollision) UNIT_TEST(TestTypes) UNIT_TEST_SUITE_END(); @@ -20,10 +20,10 @@ private: inline void TestIntStr() { UNIT_ASSERT_EQUAL(MultiHash(static_cast<int>(123), TString("1234567")), static_cast<size_t>(ULL(9973288649881090712))); } - - inline void TestSimpleCollision() { - UNIT_ASSERT_UNEQUAL(MultiHash(1, 1, 0), MultiHash(2, 2, 0)); - } + + inline void TestSimpleCollision() { + UNIT_ASSERT_UNEQUAL(MultiHash(1, 1, 0), MultiHash(2, 2, 0)); + } inline void TestTypes() { UNIT_ASSERT_EQUAL(MultiHash("aaa", (ui64)123), MultiHash("aaa", 123)); |