summaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/index/indexmanager_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchcore/src/tests/proton/index/indexmanager_test.cpp')
-rw-r--r--searchcore/src/tests/proton/index/indexmanager_test.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/searchcore/src/tests/proton/index/indexmanager_test.cpp b/searchcore/src/tests/proton/index/indexmanager_test.cpp
index 9abd3e6cb39..9ceb85981c0 100644
--- a/searchcore/src/tests/proton/index/indexmanager_test.cpp
+++ b/searchcore/src/tests/proton/index/indexmanager_test.cpp
@@ -364,7 +364,7 @@ TEST_F("requireThatFlushStatsAreCalculated", Fixture) {
SequencedTaskExecutor invertThreads(2);
SequencedTaskExecutor pushThreads(2);
search::memoryindex::DocumentInverter inverter(schema, invertThreads,
- pushThreads);
+ pushThreads, fic);
uint64_t fixed_index_size = fic.getMemoryUsage().allocatedBytes();
uint64_t index_size = fic.getMemoryUsage().allocatedBytes() - fixed_index_size;
@@ -378,8 +378,7 @@ TEST_F("requireThatFlushStatsAreCalculated", Fixture) {
Document::UP doc = f.addDocument(docid);
inverter.invertDocument(docid, *doc);
invertThreads.sync();
- inverter.pushDocuments(fic,
- std::shared_ptr<search::IDestructorCallback>());
+ inverter.pushDocuments(std::shared_ptr<search::IDestructorCallback>());
pushThreads.sync();
index_size = fic.getMemoryUsage().allocatedBytes() - fixed_index_size;
@@ -398,8 +397,7 @@ TEST_F("requireThatFlushStatsAreCalculated", Fixture) {
doc = f.addDocument(docid + 100);
inverter.invertDocument(docid + 100, *doc);
invertThreads.sync();
- inverter.pushDocuments(fic,
- std::shared_ptr<search::IDestructorCallback>());
+ inverter.pushDocuments(std::shared_ptr<search::IDestructorCallback>());
pushThreads.sync();
index_size = fic.getMemoryUsage().allocatedBytes() - fixed_index_size;
/// Must account for both docid 0 being reserved and the extra after.