summaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/matching/querynodes_test.cpp
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@oath.com>2018-05-29 13:28:21 +0200
committerHenning Baldersheim <balder@oath.com>2018-05-29 13:28:21 +0200
commitb8f949e476f53a9e11a4e4b63401209bdb8b2f51 (patch)
tree971340f2db6fcbc4e20d3ca6ff3ab1d3070700d0 /searchcore/src/tests/proton/matching/querynodes_test.cpp
parent857b1380d3d39d3667bf7ee87daa119455bccda2 (diff)
Remove termlikeness and expect fully qualified names for children from the qrs.
Diffstat (limited to 'searchcore/src/tests/proton/matching/querynodes_test.cpp')
-rw-r--r--searchcore/src/tests/proton/matching/querynodes_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchcore/src/tests/proton/matching/querynodes_test.cpp b/searchcore/src/tests/proton/matching/querynodes_test.cpp
index a12aa797947..7b6fdd1ae88 100644
--- a/searchcore/src/tests/proton/matching/querynodes_test.cpp
+++ b/searchcore/src/tests/proton/matching/querynodes_test.cpp
@@ -208,7 +208,7 @@ public:
typedef QueryBuilder<ProtonNodeTypes> QB;
struct Phrase { void addToBuilder(QB& b) { b.addPhrase(2, view, id, weight); }};
-struct SameElement { void addToBuilder(QB& b) { b.addSameElement(2, view, id, weight); }};
+struct SameElement { void addToBuilder(QB& b) { b.addSameElement(2, view); }};
struct Near { void addToBuilder(QB& b) { b.addNear(2, distance); } };
struct ONear { void addToBuilder(QB& b) { b.addONear(2, distance); } };
struct Or { void addToBuilder(QB& b) { b.addOr(2); } };