summaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorGeir Storli <geirst@verizonmedia.com>2019-09-10 12:08:58 +0000
committerGeir Storli <geirst@verizonmedia.com>2019-09-10 12:08:58 +0000
commit5608083ccf31ac994fe0ba090b9325ffcaab74b6 (patch)
tree173304f87ce22ea2dfe7c120c143c8e22c1323af /searchcore
parentcad5274df5ad5e2cc5f0d5f179c2d2d86d10cf50 (diff)
Stop exposing low-level data store out of enum store.
Diffstat (limited to 'searchcore')
-rw-r--r--searchcore/src/tests/proton/attribute/attributeflush_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchcore/src/tests/proton/attribute/attributeflush_test.cpp b/searchcore/src/tests/proton/attribute/attributeflush_test.cpp
index edb97e12cdc..31bf982ad70 100644
--- a/searchcore/src/tests/proton/attribute/attributeflush_test.cpp
+++ b/searchcore/src/tests/proton/attribute/attributeflush_test.cpp
@@ -636,7 +636,7 @@ Test::requireThatFlushFailurePreventsSyncTokenUpdate()
EXPECT_EQUAL(0u, flush_target->getFlushedSerialNum());
auto flush_task = flush_target->initFlush(200);
// Trigger flush failure
- av->getEnumStoreBase()->get_data_store_base().inc_compaction_count();
+ av->getEnumStoreBase()->inc_compaction_count();
flush_task->run();
EXPECT_EQUAL(0u, flush_target->getFlushedSerialNum());
}