summaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/documentdb/feedview/feedview_test.cpp
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2020-04-08 22:35:52 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2020-04-08 22:35:52 +0000
commitb971dbe48ad2111f24e7b953eaf351e9a0bb4ea1 (patch)
treed300b3d83395c6e89d395f00a7d34a772b616aee /searchcore/src/tests/proton/documentdb/feedview/feedview_test.cpp
parent78298d9906f214fc9e096df782bfb7ee5fa1e76d (diff)
Make RemoveOperation an interface and move implmentation to RemoveOperationWithDocId
Diffstat (limited to 'searchcore/src/tests/proton/documentdb/feedview/feedview_test.cpp')
-rw-r--r--searchcore/src/tests/proton/documentdb/feedview/feedview_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchcore/src/tests/proton/documentdb/feedview/feedview_test.cpp b/searchcore/src/tests/proton/documentdb/feedview/feedview_test.cpp
index 6a6b05be7f0..ddf45d6a509 100644
--- a/searchcore/src/tests/proton/documentdb/feedview/feedview_test.cpp
+++ b/searchcore/src/tests/proton/documentdb/feedview/feedview_test.cpp
@@ -620,7 +620,7 @@ struct FixtureBase
void removeAndWait(const DocumentContext &docCtx) {
FeedTokenContext token(_tracer);
- RemoveOperation op(docCtx.bid, docCtx.ts, docCtx.doc->getId());
+ RemoveOperationWithDocId op(docCtx.bid, docCtx.ts, docCtx.doc->getId());
runInMaster([&] () { performRemove(token.ft, op); });
}