summaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests
diff options
context:
space:
mode:
authorGeir Storli <geirst@yahooinc.com>2023-11-27 11:03:54 +0000
committerGeir Storli <geirst@yahooinc.com>2023-11-27 11:09:46 +0000
commitca88f4d0402fc97480d609522e7965e6a3dbc63e (patch)
treeae55e417eb2d81df3b48e22b706a0a6f1e1493b7 /searchlib/src/tests
parent6a2c1a65086386b37862596ecf73d161e17b56e1 (diff)
Prepare for direct btree posting list iterators with only docids.
Diffstat (limited to 'searchlib/src/tests')
-rw-r--r--searchlib/src/tests/attribute/searchable/attribute_searchable_adapter_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchlib/src/tests/attribute/searchable/attribute_searchable_adapter_test.cpp b/searchlib/src/tests/attribute/searchable/attribute_searchable_adapter_test.cpp
index 029c3130609..9ed28a7714c 100644
--- a/searchlib/src/tests/attribute/searchable/attribute_searchable_adapter_test.cpp
+++ b/searchlib/src/tests/attribute/searchable/attribute_searchable_adapter_test.cpp
@@ -572,7 +572,7 @@ TEST("require that attribute weighted set term works") {
ASSERT_EQUAL(5u, result.hits.size());
if (fast_search && result.iterator_dump.find("MonitoringDumpIterator") == vespalib::string::npos) {
fprintf(stderr, "DUMP: %s\n", result.iterator_dump.c_str());
- EXPECT_TRUE(result.iterator_dump.find("AttributeIteratorPack") != vespalib::string::npos);
+ EXPECT_TRUE(result.iterator_dump.find("PostingIteratorPack") != vespalib::string::npos);
}
EXPECT_EQUAL(10u, result.hits[0].docid);
EXPECT_EQUAL(20, result.hits[0].match_weight);