summaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/queryeval/blueprint/blueprint_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib/src/tests/queryeval/blueprint/blueprint_test.cpp')
-rw-r--r--searchlib/src/tests/queryeval/blueprint/blueprint_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchlib/src/tests/queryeval/blueprint/blueprint_test.cpp b/searchlib/src/tests/queryeval/blueprint/blueprint_test.cpp
index 1af9ee6cff7..968e006622f 100644
--- a/searchlib/src/tests/queryeval/blueprint/blueprint_test.cpp
+++ b/searchlib/src/tests/queryeval/blueprint/blueprint_test.cpp
@@ -24,8 +24,8 @@ auto opts = Blueprint::Options::all();
class MyOr : public IntermediateBlueprint
{
private:
- FlowCalc make_flow_calc(InFlow in_flow) const override {
- return flow_calc<OrFlow>(in_flow);
+ AnyFlow my_flow(InFlow in_flow) const override {
+ return AnyFlow::create<OrFlow>(in_flow);
}
public:
FlowStats calculate_flow_stats(uint32_t) const final {