summaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2020-10-30 17:33:44 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2020-10-30 17:33:44 +0000
commit3f0aca3c2167d804da28ea4d190c04ca795ec030 (patch)
tree9c142281514e27889f6f0803fc40b553faa4dcf8 /searchcore
parent588e5d8e5bf4b9c9a3694e805fa889263c9cd6ff (diff)
Coomit -> Commit
Diffstat (limited to 'searchcore')
-rw-r--r--searchcore/src/tests/proton/documentdb/storeonlyfeedview/storeonlyfeedview_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/searchcore/src/tests/proton/documentdb/storeonlyfeedview/storeonlyfeedview_test.cpp b/searchcore/src/tests/proton/documentdb/storeonlyfeedview/storeonlyfeedview_test.cpp
index cc8b3a85f18..c874ce5e84a 100644
--- a/searchcore/src/tests/proton/documentdb/storeonlyfeedview/storeonlyfeedview_test.cpp
+++ b/searchcore/src/tests/proton/documentdb/storeonlyfeedview/storeonlyfeedview_test.cpp
@@ -190,7 +190,7 @@ struct FixtureBase {
DocumentMetaStore::SP metaStore;
vespalib::ThreadStackExecutor sharedExecutor;
ExecutorThreadingService writeService;
- std::shared_ptr<PendingLidTrackerBase> pendingLidsForCoomit;
+ std::shared_ptr<PendingLidTrackerBase> pendingLidsForCommit;
typename FeedViewType::UP feedview;
SerialNum serial_num;
@@ -206,7 +206,7 @@ struct FixtureBase {
subDbType)),
sharedExecutor(1, 0x10000),
writeService(sharedExecutor),
- pendingLidsForCoomit(std::make_shared<PendingLidTracker>()),
+ pendingLidsForCommit(std::make_shared<PendingLidTracker>()),
feedview(),
serial_num(2u)
{
@@ -214,7 +214,7 @@ struct FixtureBase {
metaStore->constructFreeList();
ISummaryAdapter::SP adapter = std::make_shared<MySummaryAdapter>(removeCount, putCount, heartbeatCount);
feedview = std::make_unique<FeedViewType>(adapter, metaStore, writeService,
- params, pendingLidsForCoomit, outstandingMoveOps);
+ params, pendingLidsForCommit, outstandingMoveOps);
}
~FixtureBase() {