From f666b09c948f78c79811134066839d56293817e6 Mon Sep 17 00:00:00 2001 From: Viktor Govako Date: Tue, 25 Jan 2022 21:35:43 +0300 Subject: [PATCH] [tests] Fixed the upper bound for the categories trie. Signed-off-by: Viktor Govako --- indexer/indexer_tests/categories_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indexer/indexer_tests/categories_test.cpp b/indexer/indexer_tests/categories_test.cpp index 2e70eda73d..2f9f9c3e20 100644 --- a/indexer/indexer_tests/categories_test.cpp +++ b/indexer/indexer_tests/categories_test.cpp @@ -315,7 +315,7 @@ UNIT_TEST(CategoriesIndex_AllCategories) index.AddAllCategoriesInAllLangs(); // Consider deprecating this method if this bound rises as high as a million. LOG(LINFO, ("Number of nodes in the CategoriesIndex trie:", index.GetNumTrieNodes())); - TEST_LESS(index.GetNumTrieNodes(), 400000, ()); + TEST_LESS(index.GetNumTrieNodes(), 450000, ()); } #endif