aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/engine/proto_rpc_adapter/proto_rpc_adapter_test.cpp
diff options
context:
space:
mode:
authorArne H Juul <arnej@yahooinc.com>2021-10-13 07:36:19 +0000
committerArne H Juul <arnej@yahooinc.com>2021-10-13 10:43:35 +0000
commit9a24ed9a9e9870e6205f947abb4a4313177a3a52 (patch)
tree05c8f5dfbdf39ba4e52004e903d899584f15bcd3 /searchlib/src/tests/engine/proto_rpc_adapter/proto_rpc_adapter_test.cpp
parent8a23181a857c7c37bc1bdb226f31b479ac1217a7 (diff)
track API change - "root slime" is always true now
Diffstat (limited to 'searchlib/src/tests/engine/proto_rpc_adapter/proto_rpc_adapter_test.cpp')
-rw-r--r--searchlib/src/tests/engine/proto_rpc_adapter/proto_rpc_adapter_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchlib/src/tests/engine/proto_rpc_adapter/proto_rpc_adapter_test.cpp b/searchlib/src/tests/engine/proto_rpc_adapter/proto_rpc_adapter_test.cpp
index 304e33900a6..41f471f0a7a 100644
--- a/searchlib/src/tests/engine/proto_rpc_adapter/proto_rpc_adapter_test.cpp
+++ b/searchlib/src/tests/engine/proto_rpc_adapter/proto_rpc_adapter_test.cpp
@@ -52,7 +52,7 @@ struct MyDocsumServer : DocsumServer {
auto reply = std::make_unique<DocsumReply>();
reply->_root = std::make_unique<Slime>();
auto &list = reply->_root->setArray();
- list.addObject().setBool("use_root_slime", req->useRootSlime());
+ list.addObject().setBool("use_root_slime", true);
list.addObject().setString("ranking", req->ranking);
reply->request = std::move(req);
std::this_thread::sleep_for(std::chrono::milliseconds(5));