summaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/attribute/bitvector
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2018-12-19 05:43:39 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2018-12-19 05:43:39 +0000
commite78360cf485b90019d15cdb7435156ea2a5fea77 (patch)
tree0f07b751fdac14f8f9859f80470239fa75e1391f /searchlib/src/tests/attribute/bitvector
parent38fdb8afeb37d111f29b146fca03620b4a4f3d4a (diff)
Follow api change
Diffstat (limited to 'searchlib/src/tests/attribute/bitvector')
-rw-r--r--searchlib/src/tests/attribute/bitvector/bitvector_test.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/searchlib/src/tests/attribute/bitvector/bitvector_test.cpp b/searchlib/src/tests/attribute/bitvector/bitvector_test.cpp
index abc9d3aa975..a8abf1ff4fe 100644
--- a/searchlib/src/tests/attribute/bitvector/bitvector_test.cpp
+++ b/searchlib/src/tests/attribute/bitvector/bitvector_test.cpp
@@ -616,9 +616,7 @@ public:
~Verifier();
SearchIterator::UP create(bool strict) const override {
- return _inverted
- ? BitVectorIterator::createInverse(_bv.get(), getDocIdLimit(), _tfmd, strict)
- : BitVectorIterator::create(_bv.get(), getDocIdLimit(), _tfmd, strict);
+ return BitVectorIterator::create(_bv.get(), getDocIdLimit(), _tfmd, strict, _inverted);
}
private: