diff --git a/test/implementations/parallelaccess/ParallelAccessBlockStoreTest.cpp b/test/implementations/parallelaccess/ParallelAccessBlockStoreTest.cpp index e99230b5..f94d426d 100644 --- a/test/implementations/parallelaccess/ParallelAccessBlockStoreTest.cpp +++ b/test/implementations/parallelaccess/ParallelAccessBlockStoreTest.cpp @@ -10,11 +10,12 @@ using blockstore::testfake::FakeBlockStore; using std::unique_ptr; using std::make_unique; +using cpputils::make_unique_ref; class ParallelAccessBlockStoreTestFixture: public BlockStoreTestFixture { public: unique_ptr createBlockStore() override { - return make_unique(make_unique()); + return make_unique(make_unique_ref()); } };