aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/docstore/document_store
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-10-06 14:05:38 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2017-10-06 14:58:28 +0200
commitcb60fccb0fb3bf92bf2a223324dad44e986ae54d (patch)
treebf3dc2a59ae2a4b501bbded96ce68fc56f2b2f4e /searchlib/src/tests/docstore/document_store
parent3901ca812608d7c2fbcfdd7ca0524a8758a212ac (diff)
Let config reflect what it is, a threadpool serving a range of background task in the backend.
Diffstat (limited to 'searchlib/src/tests/docstore/document_store')
-rw-r--r--searchlib/src/tests/docstore/document_store/document_store_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchlib/src/tests/docstore/document_store/document_store_test.cpp b/searchlib/src/tests/docstore/document_store/document_store_test.cpp
index b48d754bfb5..2ab24a00557 100644
--- a/searchlib/src/tests/docstore/document_store/document_store_test.cpp
+++ b/searchlib/src/tests/docstore/document_store/document_store_test.cpp
@@ -77,7 +77,7 @@ TEST("require that LogDocumentStore::Config equality operator detects inequality
EXPECT_TRUE(C() == C());
EXPECT_FALSE(C() != C());
EXPECT_FALSE(C(DC(CompressionConfig::NONE, 100000, 100), LC()) == C());
- EXPECT_FALSE(C(DC(), LC().setNumThreads(7)) == C());
+ EXPECT_FALSE(C(DC(), LC().setMaxBucketSpread(7)) == C());
}
TEST_MAIN() { TEST_RUN_ALL(); }