From 0a75014530be1dc3a88f8dca0f4f4304533e6887 Mon Sep 17 00:00:00 2001 From: Konstantin Pastbin Date: Thu, 17 Mar 2022 00:29:24 +0300 Subject: [PATCH] [tests] Increase en categories index limit Signed-off-by: Konstantin Pastbin --- 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 2f9f9c3e20..d9fe7f0f8e 100644 --- a/indexer/indexer_tests/categories_test.cpp +++ b/indexer/indexer_tests/categories_test.cpp @@ -328,6 +328,6 @@ UNIT_TEST(CategoriesIndex_AllCategoriesEnglishName) CategoriesIndex index; index.AddAllCategoriesInLang(CategoriesHolder::MapLocaleToInteger("en")); - TEST_LESS(index.GetNumTrieNodes(), 8000, ()); + TEST_LESS(index.GetNumTrieNodes(), 9000, ()); } #endif