diff options
author | albert <albert@yandex-team.ru> | 2022-02-10 16:48:15 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:48:15 +0300 |
commit | a817f5de12611ec73085eba17f8ec7740a46bdb7 (patch) | |
tree | b222e5ac2e2e98872661c51ccceee5da0d291e13 /library/cpp/containers/comptrie | |
parent | 9f25ef3232c288ca664ceee6c376cf64e4349a2e (diff) | |
download | ydb-a817f5de12611ec73085eba17f8ec7740a46bdb7.tar.gz |
Restoring authorship annotation for <albert@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/containers/comptrie')
-rw-r--r-- | library/cpp/containers/comptrie/comptrie_ut.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/library/cpp/containers/comptrie/comptrie_ut.cpp b/library/cpp/containers/comptrie/comptrie_ut.cpp index ef89065155..74bee09b5d 100644 --- a/library/cpp/containers/comptrie/comptrie_ut.cpp +++ b/library/cpp/containers/comptrie/comptrie_ut.cpp @@ -870,13 +870,13 @@ void TCompactTrieTest::TestMergeFromFile() { } TCompactTrie<> trie(TBlob::FromFileSingleThreaded(GetSystemTempDir() + "/TCompactTrieTest-TestMerge-res")); - UNIT_ASSERT_VALUES_EQUAL(12u, trie.Get("ru.yandex")); - UNIT_ASSERT_VALUES_EQUAL(13u, trie.Get("ru.google")); - UNIT_ASSERT_VALUES_EQUAL(14u, trie.Get("ru.mail")); - UNIT_ASSERT_VALUES_EQUAL(22u, trie.Get("org.kernel")); - UNIT_ASSERT_VALUES_EQUAL(112u, trie.Get("com.yandex")); - UNIT_ASSERT_VALUES_EQUAL(113u, trie.Get("com.google")); - UNIT_ASSERT_VALUES_EQUAL(114u, trie.Get("com.yahoo")); + UNIT_ASSERT_VALUES_EQUAL(12u, trie.Get("ru.yandex")); + UNIT_ASSERT_VALUES_EQUAL(13u, trie.Get("ru.google")); + UNIT_ASSERT_VALUES_EQUAL(14u, trie.Get("ru.mail")); + UNIT_ASSERT_VALUES_EQUAL(22u, trie.Get("org.kernel")); + UNIT_ASSERT_VALUES_EQUAL(112u, trie.Get("com.yandex")); + UNIT_ASSERT_VALUES_EQUAL(113u, trie.Get("com.google")); + UNIT_ASSERT_VALUES_EQUAL(114u, trie.Get("com.yahoo")); unlink((GetSystemTempDir() + "/TCompactTrieTest-TestMerge-res").data()); unlink((GetSystemTempDir() + "/TCompactTrieTest-TestMerge-com").data()); |